-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtox.ini
39 lines (33 loc) · 755 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
[tox]
envlist = py27, py27-dj18, py34, py34-dj18, py35, py35-dj18, pypy, pypy-dj18
[testenv]
PYTHONPATH = {toxinidir}:{toxinidir}/debreach
commands = python setup.py test
install_command = pip install {opts} {packages}
deps =
-r{toxinidir}/ci_requirements.txt
django
[testenv:pypy]
basepython=pypy
deps =
-r{toxinidir}/ci_requirements.txt
django
[testenv:py27-dj18]
basepython=python2.7
deps =
django>=1.8,<1.9
[testenv:py34-dj18]
basepython=python3.4
deps =
-r{toxinidir}/ci_requirements.txt
django>=1.8,<1.9
[testenv:py35-dj18]
basepython=python3.4
deps =
-r{toxinidir}/ci_requirements.txt
django>=1.8,<1.9
[testenv:pypy-dj18]
basepython=pypy
deps =
-r{toxinidir}/ci_requirements.txt
django>=1.8,<1.9