Skip to content

Commit 47c6d56

Browse files
committed
replace pytest-xdist with pytest-forked
Quote from <https://github.com/pytest-dev/pytest-xdist/blob/v3.3.1/example/boxed.txt>: > Since 1.19.0, the actual implementation of the ``--boxed`` option has been moved to a > separate plugin, `pytest-forked <https://github.com/pytest-dev/pytest-forked>`_ > which can be installed independently. The ``--boxed`` command-line option is deprecated > and will be removed in pytest-xdist 3.0.0; use ``--forked`` from pytest-forked instead.
1 parent 3bdee1b commit 47c6d56

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ skipsdist=True
55
[testenv]
66
passenv = LIBARCHIVE
77
commands=
8-
python -m pytest -Wd -vv --boxed --cov libarchive --cov-report term-missing {toxinidir}/tests {posargs}
8+
python -m pytest -Wd -vv --forked --cov libarchive --cov-report term-missing {toxinidir}/tests {posargs}
99
flake8 {toxinidir}
1010
deps=
1111
flake8
1212
pytest
1313
pytest-cov
14-
pytest-xdist
14+
pytest-forked

0 commit comments

Comments
 (0)