forked from juanifioren/django-oidc-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
45 lines (41 loc) · 872 Bytes
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[tox]
envlist=
docs,
py27-django{111},
py35-django{111,20,21},
py36-django{111,20,21},
[testenv]
changedir=
oidc_provider
deps =
mock
psycopg2
pytest==3.6.4
pytest-django
pytest-flake8
pytest-cov
django111: django>=1.11,<1.12
django20: django>=2.0,<2.1
django21: django>=2.1,<2.2
commands =
pytest --flake8 --cov=oidc_provider {posargs}
[testenv:docs]
basepython = python2.7
changedir = docs
whitelist_externals =
mkdir
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