forked from saxix/django-adminactions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
53 lines (42 loc) · 752 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
50
51
52
53
[tox]
envlist =
d14,d15,d16,dev
[pytest]
python_files=webtests/test_*.py
norecursedirs = .tox
addopts =
--doctest-glob='adminactions/*.py'
--tb=short
--capture=no
[testenv]
changedir={toxinidir}
whitelist_externals = make
/bin/sh
setenv =
DISABLE_SELENIUM = 1
commands =
make ci -f {toxinidir}/Makefile
[testenv:d14]
basepython = python2.7
setenv =
DJANGO=1.4.x
[testenv:d15]
basepython = python2.7
setenv =
DJANGO=1.5.x
[testenv:d16]
basepython = python2.7
setenv =
DJANGO=1.6.x
[testenv:dev]
basepython = python2.7
setenv =
DJANGO=dev
[testenv:p3d15]
basepython = python3.2
setenv =
DJANGO=1.5.x
[testenv:p3d16]
basepython = python3.2
setenv =
DJANGO=1.6.x