Fixed for temporary barswitch hack
[cerebrum.git] / runtests.py
blob267bb3097094e09a31ef77e16082ca0d38c0434a
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 #suite = unittest.TestLoader().loadTestsFromName("generator.TestCommStuff.test_config_descriptor")
10 unittest.TextTestRunner(verbosity=2).run(suite)