forked from jazzband/django-widget-tweaks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
39 lines (34 loc) · 768 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
[tox]
envlist = py36-dj{18,111,20}, flake, coverage
[testenv]
passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH
commands = ./runtests.py
deps =
coverage
coveralls
dj12: django>=1.2,<1.3
dj13: django>=1.3,<1.4
dj14: django>=1.4,<1.5
dj15: django>=1.5,<1.6
dj16: django>=1.6,<1.7
dj17: django>=1.7,<1.8
dj18: django>=1.8,<1.9
dj19: django>=1.9,<1.10
dj110: django>=1.10,<1.11
dj111: django>=1.11,<1.12
dj20: django>=2.0,<2.1
djmaster: https://github.com/django/django/archive/master.tar.gz
[testenv:coverage]
deps =
django
coverage
commands =
coverage run runtests.py
coverage report
[testenv:flake]
skip_install = true
deps =
flake8
flake8-import-order
commands =
flake8 widget-tweaks