-
-
Notifications
You must be signed in to change notification settings - Fork 821
Expand file tree
/
Copy pathtox.ini
More file actions
30 lines (28 loc) · 598 Bytes
/
tox.ini
File metadata and controls
30 lines (28 loc) · 598 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
[tox]
envlist =
py{39,310,311}-dj42
py{310,311,312,313}-dj51
py{310,311,312,313,314}-dj52
py{312,313,314}-dj60
py{312,313,314}-djmain
qa
[testenv]
extras = tests, daphne
commands =
pytest -v {posargs}
deps =
dj42: Django>=4.2,<5.0
dj51: Django>=5.1,<5.2
dj52: Django>=5.2,<6.0
dj60: Django>=6.0rc1,<6.1
djmain: https://github.com/django/django/archive/main.tar.gz
[testenv:qa]
skip_install=true
deps =
black
flake8
isort
commands =
flake8 channels tests
black --check channels tests
isort --check-only --diff channels tests