mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-03 13:17:37 +03:00
9 lines
340 B
Python
9 lines
340 B
Python
import sys
|
|
from importlib.util import find_spec
|
|
|
|
|
|
def pytest_addoption(parser, pluginmanager):
|
|
# Ignore the "--mypy" argument if pytest-mypy is not installed and
|
|
# the implementation is not cpython
|
|
if sys.implementation.name != 'cpython' and not find_spec("pytest_mypy"):
|
|
parser.addoption("--mypy", action="store_true")
|