forked from crucialfelix/django-ajax-selects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
49 lines (42 loc) · 945 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
; run all:
; tox
;
; run one:
; tox -e py27-dj110
;
[tox]
envlist =
{py27,py34}-flake8,
{py27,py34}-{dj17,dj18,dj19,dj110,dj111}
[testenv]
setenv =
DJANGO_SETTINGS_MODULE=tests.settings
PYTHONPATH = {toxinidir}:{toxinidir}/ajax_select:{toxinidir}/tests
commands = django-admin.py test tests
deps =
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
; djmaster: https://github.com/django/django/zipball/master
[testenv:py27-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
; [testenv:py36-flake8]
; deps =
; flake8
; commands = flake8 ajax_select tests example
; [testenv:py37-flake8]
; deps =
; flake8
; commands = flake8 ajax_select tests example