@@ -29,7 +29,7 @@ def test_simple_terminal_normal(self, simple_script, testdir, mode):
29
29
else :
30
30
pytest .importorskip ("xdist" )
31
31
result = testdir .runpytest ("-n1" )
32
- expected_lines = ["gw0 [1 ]" ]
32
+ expected_lines = ["1 worker [1 item ]" ]
33
33
34
34
expected_lines += [
35
35
"* test_foo [[]custom[]] (i=1) *" ,
@@ -54,7 +54,7 @@ def test_simple_terminal_verbose(self, simple_script, testdir, mode):
54
54
pytest .importorskip ("xdist" )
55
55
result = testdir .runpytest ("-n1" , "-v" )
56
56
expected_lines = [
57
- "gw0 [1 ]" ,
57
+ "1 worker [1 item ]" ,
58
58
"*gw0*100%* test_simple_terminal_verbose.py::test_foo*" ,
59
59
"*gw0*100%* test_simple_terminal_verbose.py::test_foo*" ,
60
60
"*gw0*100%* test_simple_terminal_verbose.py::test_foo*" ,
@@ -87,7 +87,7 @@ def test_foo(subtests):
87
87
else :
88
88
pytest .importorskip ("xdist" )
89
89
result = testdir .runpytest ("-n1" )
90
- expected_lines = ["gw0 [1 ]" ]
90
+ expected_lines = ["1 worker [1 item ]" ]
91
91
expected_lines += ["* 1 passed, 3 skipped, 2 subtests passed in *" ]
92
92
result .stdout .fnmatch_lines (expected_lines )
93
93
@@ -108,7 +108,7 @@ def test_foo(subtests):
108
108
else :
109
109
pytest .importorskip ("xdist" )
110
110
result = testdir .runpytest ("-n1" )
111
- expected_lines = ["gw0 [1 ]" ]
111
+ expected_lines = ["1 worker [1 item ]" ]
112
112
expected_lines += ["* 1 passed, 3 xfailed, 2 subtests passed in *" ]
113
113
result .stdout .fnmatch_lines (expected_lines )
114
114
@@ -159,7 +159,7 @@ def test_simple_terminal_normal(self, simple_script, testdir, runner):
159
159
else :
160
160
pytest .importorskip ("xdist" )
161
161
result = testdir .runpytest (simple_script , "-n1" )
162
- expected_lines = ["gw0 [1 ]" ]
162
+ expected_lines = ["1 worker [1 item ]" ]
163
163
result .stdout .fnmatch_lines (
164
164
expected_lines
165
165
+ [
@@ -201,7 +201,7 @@ def test_simple_terminal_verbose(self, simple_script, testdir, runner):
201
201
pytest .importorskip ("xdist" )
202
202
result = testdir .runpytest (simple_script , "-n1" , "-v" )
203
203
expected_lines = [
204
- "gw0 [1 ]" ,
204
+ "1 worker [1 item ]" ,
205
205
"*gw0*100%* SUBFAIL test_simple_terminal_verbose.py::T::test_foo*" ,
206
206
"*gw0*100%* SUBFAIL test_simple_terminal_verbose.py::T::test_foo*" ,
207
207
"*gw0*100%* PASSED test_simple_terminal_verbose.py::T::test_foo*" ,
0 commit comments