Skip to content

Commit 703b14c

Browse files
committed
Fix type of ids for generated tests
1 parent c5cf88a commit 703b14c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/core_tests/test_plugin_hooks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def load_plugin(plugin_path, monkeypatch):
4848
def pytest_generate_tests(metafunc):
4949
if 'plugin_path' in metafunc.fixturenames:
5050
paths = list(gather_plugins())
51-
metafunc.parametrize('plugin_path', paths, ids=paths)
51+
metafunc.parametrize('plugin_path', paths, ids=list(map(str, paths)))
5252

5353

5454
HOOK_ATTR_TYPES = {

0 commit comments

Comments
 (0)