From 606ece030875ace036359316abb3b20aa90662e0 Mon Sep 17 00:00:00 2001 From: Marius Gedminas Date: Wed, 23 Oct 2019 17:35:31 +0300 Subject: [PATCH] Explain why these tests are being skipped pytest output before this change: SKIPPED [3] tests/__init__.py:217: condition: True SKIPPED [1] tests/checker/test_news.py:63: condition: True SKIPPED [1] tests/checker/test_news.py:41: condition: True SKIPPED [1] tests/checker/test_news.py:116: condition: True SKIPPED [1] tests/checker/test_news.py:75: condition: True After: SKIPPED [3] tests/__init__.py: disabled for now until some stable news server comes up SKIPPED [4] tests/checker/test_news.py: disabled for now until some stable news server comes up --- tests/checker/test_news.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/checker/test_news.py b/tests/checker/test_news.py index e0169e67..be65f9d4 100644 --- a/tests/checker/test_news.py +++ b/tests/checker/test_news.py @@ -31,7 +31,7 @@ NNTP_INFO = u"200 news.uni-stuttgart.de InterNetNews NNRP server " \ NNTP_TIMEOUT_SECS = 30 # disabled for now until some stable news server comes up -@pytest.mark.skipif("True") +@pytest.mark.skip(reason="disabled for now until some stable news server comes up") class TestNews (LinkCheckTest): """Test nntp: and news: link checking."""