From 7416c8b7fc7e95edf7ee42719bf78ff863ab2dff Mon Sep 17 00:00:00 2001 From: Mads Marquart Date: Sun, 8 Sep 2019 23:17:07 +0200 Subject: [PATCH] Make test setup more strict --- pytest.ini | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pytest.ini b/pytest.ini index ecbb1b3..1ac6d3a 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,6 +1,10 @@ [pytest] -xfail_strict=true +xfail_strict = true markers = offline: Offline tests, aka. tests that can be executed without the need of a client expensive: Expensive tests, which should be executed sparingly -addopts = -m "not expensive" +addopts = + --strict-markers + -m "not expensive" +testpaths = tests +filterwarnings = error