summaryrefslogtreecommitdiff
path: root/test/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test.py')
-rw-r--r--test/test.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test.py b/test/test.py
index 58e7ec7..818909e 100644
--- a/test/test.py
+++ b/test/test.py
@@ -85,11 +85,11 @@ def run_all_tests():
85 the one used to spawn the `mat` process, and the one for Python import) 85 the one used to spawn the `mat` process, and the one for Python import)
86 in the main function. 86 in the main function.
87 """ 87 """
88 import clitest 88 import test_cli
89 import libtest 89 import test_lib
90 suite = unittest.TestSuite() 90 suite = unittest.TestSuite()
91 suite.addTests(clitest.get_tests()) 91 suite.addTests(test_cli.get_tests())
92 suite.addTests(libtest.get_tests()) 92 suite.addTests(test_lib.get_tests())
93 93
94 return unittest.TextTestRunner(verbosity=VERBOSITY).run(suite).wasSuccessful() 94 return unittest.TextTestRunner(verbosity=VERBOSITY).run(suite).wasSuccessful()
95 95