From 56aa3b37b1d1928d6361cea389198a3bdddeaf22 Mon Sep 17 00:00:00 2001 From: Hugo Date: Tue, 2 Jul 2019 11:52:14 +0300 Subject: [PATCH 1/2] Report reason for pytest skips --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.cfg b/setup.cfg index 3ab2e127f54..3e56ae8cb3e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -4,3 +4,6 @@ test=pytest [flake8] extend-ignore = E203, W503 max-line-length = 88 + +[tool:pytest] +addopts = -r s From 83b99c6b12d7f2814dae80313b8664ff1dcef5a6 Mon Sep 17 00:00:00 2001 From: Hugo Date: Fri, 5 Jul 2019 15:55:06 +0300 Subject: [PATCH 2/2] pytest bug fixed on Python 3.8, can remove space --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 3e56ae8cb3e..f55102a910b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,4 +6,4 @@ extend-ignore = E203, W503 max-line-length = 88 [tool:pytest] -addopts = -r s +addopts = -rs