forked from django-commons/django-debug-toolbar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
50 lines (45 loc) · 880 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
46
47
48
49
50
[tox]
envlist =
py{27,33,34}-dj18,
py{27,34,35}-dj{19,110,111},
py36-dj111
flake8,
isort,
readme
[testenv]
basepython =
py27: python2.7
py33: python3.3
py34: python3.4
py35: python3.5
py36: python3.6
deps =
dj18: Django>=1.8,<1.9
dj19: Django>=1.9,<1.10
dj110: Django>=1.10,<1.11
dj111: Django>=1.11,<2.0
coverage
selenium<4.0
sqlparse
django_jinja
setenv =
PYTHONPATH = {toxinidir}
whitelist_externals = make
pip_pre = True
usedevelop = true
commands = make coverage
[testenv:flake8]
basepython = python2.7
commands = make flake8
deps = flake8
[testenv:isort]
basepython = python2.7
commands = make isort_check_only
deps = isort
[testenv:jshint]
basepython = python2.7
commands = make jshint
[testenv:readme]
basepython = python2.7
commands = python setup.py check -r -s
deps = readme_renderer