Skip to content

Commit 7b095c8

Browse files
ionelmchugovk
andcommittedMay 21, 2023
Skip starting from xdist 3.0.2 (where boxed was removed).
Co-authored-by: Hugo van Kemenade <[email protected]>
1 parent 605d690 commit 7b095c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎tests/test_pytest_cov.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1574,8 +1574,8 @@ def test_foo():
15741574
SCRIPT_SIMPLE_RESULT = '4 * 100%'
15751575

15761576

1577-
@pytest.mark.skipif('tuple(map(int, xdist.__version__.split("."))) >= (2, 5, 0)',
1578-
reason="--boxed option was removed in version 2.5.0")
1577+
@pytest.mark.skipif('tuple(map(int, xdist.__version__.split("."))) >= (3, 0, 2)',
1578+
reason="--boxed option was removed in version 3.0.2")
15791579
@pytest.mark.skipif('sys.platform == "win32"')
15801580
def test_dist_boxed(testdir):
15811581
script = testdir.makepyfile(SCRIPT_SIMPLE)

0 commit comments

Comments
 (0)
Please sign in to comment.