forked from crucialfelix/django-ajax-selects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
41 lines (35 loc) · 847 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
[tox]
envlist =
{py27,py34}-flake8,
{py27,py33}-dj{15,16},
{py27,py34}-dj{17,18,19}
skip_missing_interpreters = true
[testenv]
setenv =
DJANGO_SETTINGS_MODULE=tests.settings
PYTHONPATH = {toxinidir}:{toxinidir}/ajax_select:{toxinidir}/tests
commands = django-admin.py test tests
deps =
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
; djmaster: https://github.com/django/django/zipball/master
[testenv:py27-flake8]
deps =
flake8
commands = flake8 ajax_select tests example
[testenv:py33-flake8]
deps =
flake8
commands = flake8 ajax_select tests example
[testenv:py34-flake8]
deps =
flake8
commands = flake8 ajax_select tests example
[testenv:py35-flake8]
deps =
flake8
commands = flake8 ajax_select tests example