forked from jazzband/django-taggit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
31 lines (28 loc) · 924 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
[tox]
envlist =
{py27,py33,py34,py35}-1.8.x
{py27,py34,py35}-1.9.x
{py27,py34,py35}-1.10.x
{py27,py34,py35,py36}-1.11.x
{py34,py35,py36}-master
[testenv]
deps =
1.8.x: https://github.com/django/django/archive/stable/1.8.x.tar.gz#egg=django
1.9.x: https://github.com/django/django/archive/stable/1.9.x.tar.gz#egg=django
1.10.x: https://github.com/django/django/archive/stable/1.10.x.tar.gz#egg=django
1.11.x: https://github.com/django/django/archive/stable/1.11.x.tar.gz#egg=django
master: https://github.com/django/django/archive/master.tar.gz#egg=django
commands =
make develop test
whitelist_externals = make
[testenv:flake8]
skip_install = true
usedevelop = false
changedir = {toxinidir}
deps = flake8
commands = flake8 *.py taggit/ tests/
[testenv:isort]
usedevelop = false
deps = isort
changedir = {toxinidir}
commands = isort --recursive --check-only --diff taggit tests