Skip to content

Commit 0b9f4ab

Browse files
add a test id to the multi mark
1 parent b8e557c commit 0b9f4ab

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

conftest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ def pytest_generate_tests(metafunc):
66
assert len(multi.kwargs) == 1
77
for name, l in multi.kwargs.items():
88
for val in l:
9-
metafunc.addcall(funcargs={name: val})
9+
metafunc.addcall(id='%s_%s' %(name, val),
10+
funcargs={name: val})

0 commit comments

Comments
 (0)