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 5824f22 commit a3374b8Copy full SHA for a3374b8
src/xdist/workermanage.py
@@ -96,9 +96,7 @@ def setup_nodes(
96
self.config.hook.pytest_xdist_setupnodes(config=self.config, specs=self.specs)
97
self.trace("setting up nodes")
98
with ThreadPoolExecutor(max_workers=len(self.specs)) as executor:
99
- futs = [
100
- executor.submit(self.setup_node, spec, putevent) for spec in self.specs
101
- ]
+ futs = [executor.submit(self.setup_node, spec, putevent) for spec in self.specs]
102
return [f.result() for f in futs]
103
104
def setup_node(
0 commit comments