45 lines
948 B
INI
45 lines
948 B
INI
[tox]
|
|
envlist=
|
|
py27-django{18,19,110,111},
|
|
py34-django{18,19,110,111,20},
|
|
py35-django{18,19,110,111,20},
|
|
py36-django{18,19,110,111,20},
|
|
|
|
[testenv]
|
|
changedir=
|
|
oidc_provider
|
|
deps =
|
|
mock
|
|
psycopg2
|
|
pytest
|
|
pytest-django
|
|
pytest-flake8
|
|
pytest-cov
|
|
django18: django>=1.8,<1.9
|
|
django19: django>=1.9,<1.10
|
|
django110: django>=1.10,<1.11
|
|
django111: django>=1.11,<1.12
|
|
django20: django>=2.0,<2.1
|
|
|
|
commands =
|
|
pytest --flake8 --cov=oidc_provider {posargs}
|
|
|
|
[testenv:docs]
|
|
basepython = python2.7
|
|
changedir = docs
|
|
deps =
|
|
sphinx
|
|
sphinx_rtd_theme
|
|
commands =
|
|
mkdir -p _static/
|
|
sphinx-build -v -W -b html -d {envtmpdir}/doctrees -D html_static_path="_static" . {envtmpdir}/html
|
|
|
|
[pytest]
|
|
DJANGO_SETTINGS_MODULE = oidc_provider.tests.settings
|
|
python_files = test_*.py
|
|
flake8-max-line-length = 100
|
|
flake8-ignore =
|
|
.git ALL
|
|
__pycache__ ALL
|
|
.ropeproject ALL
|
|
migrations/* ALL
|