mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 21:57:43 +03:00
Enable static type checking
This commit is contained in:
parent
94a1181dc6
commit
23a2989b77
8 changed files with 35 additions and 7 deletions
6
setup.py
6
setup.py
|
@ -36,6 +36,7 @@ For further information, please visit the `Radicale Website
|
|||
|
||||
"""
|
||||
|
||||
import os
|
||||
import sys
|
||||
|
||||
from setuptools import find_packages, setup
|
||||
|
@ -52,6 +53,11 @@ needs_pytest = {"pytest", "test", "ptr"}.intersection(sys.argv)
|
|||
pytest_runner = ["pytest-runner"] if needs_pytest else []
|
||||
tests_require = ["pytest-runner", "pytest", "pytest-cov", "pytest-flake8",
|
||||
"pytest-isort", "waitress"]
|
||||
os.environ["PYTEST_ADDOPTS"] = os.environ.get("PYTEST_ADDOPTS", "")
|
||||
# Mypy only supports CPython
|
||||
if sys.implementation.name == "cpython":
|
||||
tests_require.extend(["pytest-mypy", "types-setuptools"])
|
||||
os.environ["PYTEST_ADDOPTS"] += " --mypy"
|
||||
|
||||
setup(
|
||||
name="Radicale",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue