1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-08-10 18:40:53 +00:00

test WSGI server

This commit is contained in:
Unrud 2018-09-09 14:58:44 +02:00
parent 171651e205
commit f1de843188
2 changed files with 33 additions and 0 deletions

View file

@ -36,6 +36,7 @@ For further information, please visit the `Radicale Website
"""
import os
import sys
from setuptools import find_packages, setup
@ -53,6 +54,8 @@ 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"]
if os.name == "posix":
tests_require.append("gunicorn")
setup(
name="Radicale",