diff options
| author | jvoisin | 2016-03-27 19:08:48 +0200 |
|---|---|---|
| committer | jvoisin | 2016-03-27 19:08:48 +0200 |
| commit | 368474eaaa6cce9d219ff1963ff31e521eca62e9 (patch) | |
| tree | affd71b4f51861178545c44892c061c0e4e4b56f /test/test.py | |
| parent | cae9853318964813b60db05e71d431eb49366d34 (diff) | |
Move some testfiles around
The long-term goal is to use nose2 for testing
Diffstat (limited to 'test/test.py')
| -rw-r--r-- | test/test.py | 8 |
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 | ||
