Skip to content

Commit

Permalink
fix: identify testcases recursively
Browse files Browse the repository at this point in the history
  • Loading branch information
pyoor committed Nov 18, 2021
1 parent 4ff9789 commit 81979a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bugmon/evaluator_configs/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def iter_tests(cls, working_dir: Path) -> Iterator[Path]:
"""
processed = []
for allowed_pattern in cls.ALLOWED:
for filename in working_dir.glob(f"{allowed_pattern}"):
for filename in working_dir.rglob(f"{allowed_pattern}"):
if not filename.is_file():
continue

Expand Down

0 comments on commit 81979a9

Please sign in to comment.