From 00d66d5229364df830f78659edcf5654f471983e Mon Sep 17 00:00:00 2001 From: Adrien Ferrand Date: Mon, 31 May 2021 21:31:28 +0200 Subject: [PATCH] Skip coverage on conftest --- certbot-apache/tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot-apache/tests/conftest.py b/certbot-apache/tests/conftest.py index 85bfe96f8..0c84927cf 100644 --- a/certbot-apache/tests/conftest.py +++ b/certbot-apache/tests/conftest.py @@ -1,6 +1,6 @@ import sys -def pytest_ignore_collect(path, config): +def pytest_ignore_collect(path, config): # pragma: no cover # Do not run any test for certbot-apache on Windows. if sys.platform == 'win32': return True