From 8301993e5e8b3780d35a5eb888ba603731f5c809 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Fri, 31 Jan 2020 00:16:41 +0100 Subject: [PATCH] tests: use `-rfEX` `-fE` is the default in `features` now [1], but the idea is to add `X` also to it in the long run, so let's dogfood it ourselves. 1: https://github.com/pytest-dev/pytest/pull/6524 2: https://github.com/pytest-dev/pytest/pull/6524#issuecomment-577650703 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 707f239d0..65af0a4a8 100644 --- a/tox.ini +++ b/tox.ini @@ -147,7 +147,7 @@ commands = python scripts/publish-gh-release-notes.py {posargs} [pytest] minversion = 2.0 -addopts = -ra -p pytester --strict-markers +addopts = -rfEX -p pytester --strict-markers rsyncdirs = tox.ini doc src testing python_files = test_*.py *_test.py testing/*/*.py python_classes = Test Acceptance