forked from etianen/django-python3-ldap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
31 lines (28 loc) · 620 Bytes
/
tox.ini
File metadata and controls
31 lines (28 loc) · 620 Bytes
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
[tox]
envlist =
coverage-erase
test-{py27,py35,py36}-django{18,19,110}
coverage-report
flake8
[testenv]
usedevelop = True
deps =
django18: Django>=1.8,<1.9
django19: Django>=1.9,<1.10
django110: Django>=1.10,<1.11
django111: Django>=1.11,<1.12
coverage>=4.1
commands =
coverage-erase: coverage erase
test: coverage run --append tests/manage.py test django_python3_ldap
coverage-report: coverage report
passenv = LDAP_AUTH_*
[testenv:flake8]
basepython = python3.6
deps =
flake8>=2.5.4
commands =
flake8
[flake8]
max-line-length=120
exclude=venv,migrations,.tox