Fixed the test script so it tests *all* the things.
[cerebrum.git] / runtests.py
blob58a315837e5549515f7ec0b31730f8684b01e984
1 #!/usr/bin/env python3
3 import generator
4 import pylibcerebrum.test
5 import unittest
7 #The generator will be tested as a part of pylibcerebrum due to the inheritance of the test classes.
8 suite = unittest.TestLoader().loadTestsFromModule(pylibcerebrum.test)
9 unittest.TextTestRunner(verbosity=2).run(suite)