summaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-07-29 19:04:55 -0400
committerbd <bdunahu@operationnull.com>2025-07-29 19:04:55 -0400
commita27bc8281a9795397fa5c01445140ba6504960f7 (patch)
treeebedc463cb4534412bb8395825d45ff26213779d /run_tests.py
parente27aedcea3f1daf252d99b5fee218250ae1b6d1e (diff)
Add some manual tests for aiohttp and aiofiles
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 bd1d620..5b9dc01 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', 'test_yappi_adaptations']
+ t = ['test_functionality', 'test_yappi_adaptations', 'test_manual']
+ t = ['test_manual']
t_suite = t_loader.loadTestsFromNames(t)
result = t_runner.run(t_suite)