summaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-07-22 21:01:59 -0600
committerbd <bdunahu@operationnull.com>2025-07-22 21:01:59 -0600
commit160b13fd8a46138f31b9458cb46c54af3af95936 (patch)
treedd22b7d6b1a9d3f65e52545b0a58c1ec59a9f5f9 /run_tests.py
parent02ca06b3e835b34b577caf8931abe7c3786a7d87 (diff)
Add a lot more tests, finish yappi comparisons
Diffstat (limited to 'run_tests.py')
-rw-r--r--run_tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/run_tests.py b/run_tests.py
index ef9c2c2..9e714aa 100644
--- a/run_tests.py
+++ b/run_tests.py
@@ -13,7 +13,8 @@ if __name__ == '__main__':
sys.path.append('aergia/')
t_loader = unittest.defaultTestLoader
t_runner = unittest.TextTestRunner(verbosity=2)
- t = ['test_functionality']
+ t = ['test_functionality', 'test_yappi_adaptations']
+ t = ['test_yappi_adaptations']
t_suite = t_loader.loadTestsFromNames(t)
result = t_runner.run(t_suite)