test_ifs_ingest.py 304 Bytes
Newer Older
Wei Shoulin's avatar
Wei Shoulin committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import logging
import unittest
import os

from csst_dfs_api_local.ifs import ingest

log = logging.getLogger('csst')
class IFSIngestTestCase(unittest.TestCase):

    def setUp(self):
        self.root_dir = os.getenv("CSST_LOCAL_FILE_ROOT", "/opt/temp/csst")

    def test_ingest(self):
       ingest()