We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73f87e8 commit 3f337bbCopy full SHA for 3f337bb
src/pytest_run_parallel/plugin.py
@@ -172,8 +172,7 @@ def pytest_itemcollected(item):
172
skipped_functions = [
173
x.split(".") for x in item.config.getini("thread_unsafe_functions")
174
]
175
- skipped_functions = frozenset((".".join(x[:-1]), x[-1]) for x in
176
- skipped_functions)
+ skipped_functions = frozenset((".".join(x[:-1]), x[-1]) for x in skipped_functions)
177
178
if n_workers > 1:
179
thread_unsafe, thread_unsafe_reason = identify_thread_unsafe_nodes(
0 commit comments