-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathtox.ini
59 lines (58 loc) · 1.25 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
[tox]
isolated_build = True
envlist =
{py38,py39,py310,py311,py312}-django{40,41,42},
{py310,py311,py312}-django{50a},
[testenv]
passenv =
ELASTICSEARCH_URL
MONGODB_URL
REDIS_URL
deps =
attrs
bottle
cherrypy
celery!=4.4.4 # https://github.com/celery/celery/issues/6153
cryptography
django32: Django>=3.2,<3.3
django32: djangorestframework
django40: Django>=4.0,<4.1
django40: djangorestframework
django41: Django>4.0,<4.2
django41: djangorestframework
django42: Django>4.1,<5
django42: djangorestframework
django50a: Django>=5.0a1,<5.1
django50a: djangorestframework
dramatiq>=1.0.0
elasticsearch<8.0.0; python_version <= "3.9"
elasticsearch ; python_version > "3.9"
falcon
flask
flask-sqlalchemy
hiredis
huey
hug>=2.5.1
httpretty
importlib_metadata
jinja2
psutil
pymongo
pyramid
pytest
pytest-asyncio
pytest-cov
pyyaml
redis
rq
six
sqlalchemy < 2.0.0 ; python_version <= "3.8"
sqlalchemy
starlette
webtest
commands =
pytest {posargs}
# For newer versions of python use --asyncio-mode=auto usage.
[testenv:py{38,39,310,311}-django{40,41,42}]
commands =
pytest {posargs} --asyncio-mode=auto