-
Notifications
You must be signed in to change notification settings - Fork 35
/
tox.ini
62 lines (54 loc) · 1.12 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
[tox]
envlist =
py27-1.8, py27-1.9, py27-1.10
py36-1.8, py36-1.9, py36-1.10, py36-master,
[testenv]
deps =
flake8 >= 3.0.4
coverage >= 4.2
django-autoslug >= 1.9.3
usedevelop = True
setenv =
LANG=en_US.UTF-8
LANGUAGE=en_US:en
LC_ALL=en_US.UTF-8
commands =
coverage run setup.py test
coverage report -m
flake8 --max-line-length=100 --exclude=migrations podcasting
[testenv:py27-1.8]
basepython = python2.7
deps =
{[testenv]deps}
Django>1.8,<1.9
[testenv:py27-1.9]
basepython = python2.7
deps =
{[testenv]deps}
Django>1.9,<1.10
[testenv:py27-1.10]
basepython = python2.7
deps =
{[testenv]deps}
Django>1.10,<1.11
[testenv:py36-1.8]
basepython = python3.5
deps =
{[testenv]deps}
Django>1.8,<1.9
[testenv:py36-1.9]
basepython = python3.5
deps =
{[testenv]deps}
Django>1.9,<1.10
[testenv:py36-1.10]
basepython = python3.5
deps =
{[testenv]deps}
Django>1.10,<1.11
[testenv:py36-master]
basepython = python3.5
deps =
{[testenv]deps}
https://github.com/django/django/tarball/master
https://github.com/neithere/django-autoslug/tarball/master