We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 096eb49 commit fa1a913Copy full SHA for fa1a913
unblob/testing.py
@@ -1,3 +1,4 @@
1
+import glob
2
import shlex
3
import subprocess
4
from pathlib import Path
@@ -21,7 +22,9 @@ def configure_logging(): # noqa: PT004
21
22
23
24
def gather_integration_tests(test_data_path: Path):
- test_input_dirs = list(test_data_path.glob("**/__input__"))
25
+ test_input_dirs = [
26
+ Path(p) for p in glob.iglob(f"{test_data_path}/**/__input__", recursive=True)
27
+ ]
28
test_case_dirs = [p.parent for p in test_input_dirs]
29
test_output_dirs = [p / "__output__" for p in test_case_dirs]
30
test_ids = [
0 commit comments