Skip to content

Commit cbf4215

Browse files
author
Tomasz Dąbrowski
committed
run all unit tests
1 parent e2ff320 commit cbf4215

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

tests/run_tests.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,8 @@ def run_tests():
3030

3131
print("Running Copy-Request Parser Tests")
3232
print("=" * 40)
33-
3433
# Run individual test files
35-
test_files = [
36-
"test_request_tree.py",
37-
"test_javascript_parser.py",
38-
"test_tree_general.py",
39-
"test_integration.py"
40-
]
34+
test_files = [p for p in os.listdir(test_dir) if p.startswith("test_") and p.endswith(".py")]
4135

4236
total_passed = 0
4337
total_failed = 0

0 commit comments

Comments
 (0)