From 56617b06b9e4265277846e787ea9538aa5e08f06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Wed, 2 Nov 2016 11:02:40 +0100 Subject: [PATCH] Removed -x option for py.test The -x option makes py.test run failed tests first. However, tests that failed because of interference with previous tests will be falsely marked as PASSED when this happens. --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 5a3b63c..6fe8b3f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [tool:pytest] -addopts = -v --cov attract --cov-report term-missing --ignore node_modules -x --ff +addopts = -v --cov attract --cov-report term-missing --ignore node_modules --ff [pep8] max-line-length = 100