blob: 38fc6dc2c43e6397bac7177009b74dd4411ee920 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/env python3
import unittest
import sys
if __name__ == '__main__':
sys.path.append('t/')
sys.path.append('aergia/')
t_loader = unittest.defaultTestLoader
t_runner = unittest.TextTestRunner(verbosity=2)
t = ['test_functionality']
t_suite = t_loader.loadTestsFromNames(t)
result = t_runner.run(t_suite)
sys.exit(not result.wasSuccessful())
|