We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2ff320 commit cbf4215Copy full SHA for cbf4215
1 file changed
tests/run_tests.py
@@ -30,14 +30,8 @@ def run_tests():
30
31
print("Running Copy-Request Parser Tests")
32
print("=" * 40)
33
-
34
# 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
- ]
+ test_files = [p for p in os.listdir(test_dir) if p.startswith("test_") and p.endswith(".py")]
41
42
total_passed = 0
43
total_failed = 0
0 commit comments