certbot/certbot-apache/tests/conftest.py
Adrien Ferrand 920ad89f0a Dummy test
2021-05-31 22:33:03 +02:00

8 lines
300 B
Python

import sys
def pytest_ignore_collect(path, config): # pragma: no cover
# Do not run any test for certbot-apache on Windows, except obj_test which is safe
# (to avoid pytest to fail because no test was found).
if sys.platform == 'win32':
return path.basename != 'dummy_test.py'