Coverage for tests/test_import.py: 74%
13 statements
« prev ^ index » next coverage.py v6.4.2, created at 2022-07-15 02:48 -0700
« prev ^ index » next coverage.py v6.4.2, created at 2022-07-15 02:48 -0700
1import unittest
3import lsst.utils.tests
4import lsst.display.ds9
7class ImportTest(unittest.TestCase):
8 def testImport(self):
9 self.assertTrue(hasattr(lsst.display.ds9, "Ds9Error"))
12class TestMemory(lsst.utils.tests.MemoryTestCase):
13 pass
16def setup_module(module):
17 lsst.utils.tests.init()
20if __name__ == "__main__": 20 ↛ 21line 20 didn't jump to line 21, because the condition on line 20 was never true
21 lsst.utils.tests.init()
22 unittest.main()