mitmproxy/test/conftest.py
Thomas Kriechbaumer 4855659eeb nuke old openssl
2017-07-25 10:56:24 +02:00

20 lines
380 B
Python

import os
import pytest
pytest_plugins = ('test.full_coverage_plugin',)
skip_windows = pytest.mark.skipif(
os.name == "nt",
reason='Skipping due to Windows'
)
skip_not_windows = pytest.mark.skipif(
os.name != "nt",
reason='Skipping due to not Windows'
)
skip_appveyor = pytest.mark.skipif(
"APPVEYOR" in os.environ,
reason='Skipping due to Appveyor'
)