diff options
Diffstat (limited to 'dev-python/pytest/pytest-6.2.5-r2.ebuild')
-rw-r--r-- | dev-python/pytest/pytest-6.2.5-r2.ebuild | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/dev-python/pytest/pytest-6.2.5-r2.ebuild b/dev-python/pytest/pytest-6.2.5-r2.ebuild index 4558e9276b96..c55df4717bb1 100644 --- a/dev-python/pytest/pytest-6.2.5-r2.ebuild +++ b/dev-python/pytest/pytest-6.2.5-r2.ebuild @@ -55,7 +55,10 @@ python_test() { local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 - "${EPYTHON}" -m pytest -vv --lsof -rfsxX -p xdist \ - -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")" || - die "Tests failed with ${EPYTHON}" + local EPYTEST_DESELECT=( + # broken by epytest args + testing/test_warnings.py::test_works_with_filterwarnings + ) + + epytest -p xdist -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")" } |