Skip to content

Commit fb70c2f

Browse files
committed
Changed slash to - as test name is incompatible in a path.
1 parent 9460eff commit fb70c2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pytest_repeat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def pytest_generate_tests(metafunc):
5757
if count > 1:
5858

5959
def make_progress_id(i, n=count):
60-
return '{0}/{1}'.format(i + 1, n)
60+
return '{0}-{1}'.format(i + 1, n)
6161

6262
scope = metafunc.config.option.repeat_scope
6363
metafunc.parametrize(

0 commit comments

Comments
 (0)