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 a3374b8 commit 9d7dcaeCopy full SHA for 9d7dcae
src/xdist/workermanage.py
@@ -96,7 +96,9 @@ 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 = [executor.submit(self.setup_node, spec, putevent) for spec in self.specs]
+ futs = [
100
+ executor.submit(self.setup_node, spec, putevent) for spec in self.specs
101
+ ]
102
return [f.result() for f in futs]
103
104
def setup_node(
0 commit comments