forked from django-haystack/django-haystack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
48 lines (40 loc) · 789 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
[tox]
envlist = docs,
py27-django1.8,
py34-django1.8,
py35-django1.8,
pypy-django1.8,
[base]
deps = requests
[django1.8]
deps =
Django>=1.8,<1.9
[testenv]
commands =
python test_haystack/solr_tests/server/wait-for-solr
python {toxinidir}/setup.py test
[testenv:pypy-django1.8]
deps =
{[django1.8]deps}
{[base]deps}
[testenv:py27-django1.8]
basepython = python2.7
deps =
{[django1.8]deps}
{[base]deps}
[testenv:py34-django1.8]
basepython = python3.4
deps =
{[django1.8]deps}
{[base]deps}
[testenv:py35-django1.8]
basepython = python3.5
deps =
{[django1.8]deps}
{[base]deps}
[testenv:docs]
changedir = docs
deps =
sphinx
commands =
sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html