forked from toastdriven/restless
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtox.ini
More file actions
46 lines (43 loc) · 715 Bytes
/
tox.ini
File metadata and controls
46 lines (43 loc) · 715 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[tox]
envlist =
py{36,37,38,39,py}-{dj22,dj30,dj31,dj32}-{fl10,fl11,fl20}
[testenv]
basepython =
py36: python3.6
py37: python3.7
py38: python3.8
py39: python3.9
pypy: pypy
deps =
six
pytest
pytest-cov
WebOb>=1.3.1,<1.7
Pyramid<1.8
tornado
fl10: Flask>=1.0
fl11: Flask>=1.1
fl20: Flask>=2.0
dj22: Django>=2.2,<2.3
dj30: Django>=3.0,<3.1
dj31: Django>=3.1,<3.2
dj32: Django>=3.2,<3.3
commands =
pytest --cov=restless
[travis]
python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39
pypy: pypy
[travis:env]
DJANGO =
2.2: dj22
3.0: dj30
3.1: dj31
3.2: dj32
FLASK =
1.0: fl10
1.1: fl11
2.0: fl20