Add a root test target that calls sub-tests

This commit is contained in:
Matt Weiden
2019-12-19 15:20:41 -08:00
parent 1eef44d5f8
commit 9a0f7c3179
11 changed files with 40 additions and 26 deletions
+2 -2
View File
@@ -11,7 +11,7 @@ class DataLoadEngineTest(unittest.TestCase):
Test file loading, including deferred loading/update.
"""
def setUp(self):
self.data_file = DataLocator("example-dataset/pbmc3k.h5ad")
self.data_file = DataLocator("../example-dataset/pbmc3k.h5ad")
self.data = ScanpyEngine()
def test_init(self):
@@ -76,7 +76,7 @@ class DataLocatorEngineTest(unittest.TestCase):
self.assertEqual(data.gene_count, 1838)
def test_posix_file(self):
locator = DataLocator("example-dataset/pbmc3k.h5ad")
locator = DataLocator("../example-dataset/pbmc3k.h5ad")
data = ScanpyEngine(locator, self.args)
self.stdAsserts(data)