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 de68bbd commit e4a1e6fCopy full SHA for e4a1e6f
src/xdist/iso_scheduling_plugin.py
@@ -290,11 +290,11 @@ def maybe_call_setup(
290
self._setup_context is None
291
), f"maybe_call_setup()` already called {self._setup_context=}"
292
293
- node_path = self._setup_request.node.path
+ node_path: pathlib.Path = self._setup_request.node.path
294
295
root_context_dir: pathlib.Path = (
296
self._root_context_base_dir
297
- / node_path.relative_to(node_path.root)
+ / node_path.relative_to(node_path.parts[0])
298
/ self._setup_request.node.name
299
)
300
0 commit comments