File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ Release Notes
7
7
8
8
* Thanks to `@boxed <https://github.com/boxed >`_ for the PR
9
9
10
+ * Fixed compatibility with ``pytest-xdist `` 2.0+ (supporting >= 1.22.3)
11
+
12
+ * Thanks to `@Zac-HD <https://github.com/Zac-HD >`_ for the PR
13
+
10
14
**1.4.1 (2017-06-22) **
11
15
12
16
* Update dependency of requests to require v2.9 or later.
Original file line number Diff line number Diff line change @@ -34,8 +34,8 @@ def _verify_url(request, base_url):
34
34
35
35
36
36
def pytest_configure (config ):
37
- if hasattr (config , "slaveinput " ):
38
- return # xdist slave
37
+ if hasattr (config , "workerinput " ):
38
+ return # don't run configure on xdist worker nodes
39
39
base_url = config .getoption ("base_url" ) or config .getini ("base_url" )
40
40
if base_url is not None :
41
41
config .option .base_url = base_url
You can’t perform that action at this time.
0 commit comments