forked from django-background-tasks/django-background-tasks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
25 lines (23 loc) · 678 Bytes
/
tox.ini
File metadata and controls
25 lines (23 loc) · 678 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
[tox]
envlist =
py{27}-django{18,111}-{sync,async}
py{34}-django{18,111,20}-{sync,async}
py{35}-django{18,111,20,21}-{sync,async}
py{36}-django{111,20,21,30}-{sync,async}
py{37}-django{20,21,30}-{sync,async}
py{38}-django{30}-{sync,async}
[testenv]
deps =
coverage
django-coverage
django18: Django>=1.8,<1.9
django111: Django>=1.11,<1.12
django20: Django>=2.0,<2.1
django21: Django>=2.1,<2.2
django30: Django>=3.0,<3.1
-r{toxinidir}/requirements-test.txt
-r{toxinidir}/requirements.txt
commands =
coverage erase
sync: coverage run -a ./runtests.py
async: coverage run -a ./runtests.py {posargs:--async}