forked from django-es/django-elasticsearch-dsl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
27 lines (23 loc) · 691 Bytes
/
tox.ini
File metadata and controls
27 lines (23 loc) · 691 Bytes
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
[tox]
envlist =
{py27,py36,py37}-django-110-{es2,es5,es6}
{py27,py36,py37}-django-111-{es2,es5,es6}
{py36,py37}-django-2-{es2,es5,es6}
{py36,py37}-django-21-{es2,es5,es6}
[testenv]
setenv =
PYTHONPATH = {toxinidir}:{toxinidir}/django_elasticsearch_dsl
commands = python runtests.py {posargs}
deps =
django-110: Django>=1.10,<1.11
django-111: Django>=1.11,<2.0
django-2: Django>=2.0,<2.1
django-21: Django>=2.1,<2.2
es2: elasticsearch-dsl>=2.1.0,<3.0.0
es5: elasticsearch-dsl>=5.0.0,<6.0.0
es6: elasticsearch-dsl>=6.0.0,<7.0.0
-r{toxinidir}/requirements_test.txt
basepython =
py27: python2.7
py36: python3.6
py37: python3.7