Skip to content

Commit c0b0cf4

Browse files
committed
Corrects the test case building
1 parent 5033d9f commit c0b0cf4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tests/runner.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ def get_default_pattern(loader):
135135
for test_module in tests_path.rglob("test_*py"):
136136
test_file = str(test_module.relative_to(tests_path).as_posix())
137137
case_str = test_file.replace("/", ".")[:-3]
138+
case_str = f"tests.{case_str}"
138139
if test_file in files:
139140
cases.append(case_str)
140141
else:

0 commit comments

Comments
 (0)