diff options
author | bd <bdunahu@operationnull.com> | 2025-09-07 18:58:57 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-09-07 18:58:57 -0400 |
commit | 187ce23b369bf2e2156f4c2bcb1077799013e634 (patch) | |
tree | 4e0071e829cef34fd236282c031e5541634f26e6 /run_tests.py |
initial commit
Diffstat (limited to 'run_tests.py')
-rw-r--r-- | run_tests.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/run_tests.py b/run_tests.py new file mode 100644 index 0000000..bbb0a6d --- /dev/null +++ b/run_tests.py @@ -0,0 +1,15 @@ +#!/usr/bin/env python3 +import unittest +import sys + +if __name__ == '__main__': + + sys.path.append('t/') + sys.path.append('nemesis/') + t_loader = unittest.defaultTestLoader + t_runner = unittest.TextTestRunner(verbosity=2) + t = [] + + t_suite = t_loader.loadTestsFromNames(t) + result = t_runner.run(t_suite) + sys.exit(not result.wasSuccessful()) |