Skip to content

Commit d53c662

Browse files
authored
Merge pull request #27 from jamseams/fix/testname
Changed slash to - as test name is incompatible in a path.
2 parents 9460eff + fb70c2f commit d53c662

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)