forked from django-cas-ng/django-cas-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
38 lines (34 loc) · 854 Bytes
/
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
[tox]
envlist=
py{36,37,38}-django22
py{36,37,38}-django30
py{36,37,38}-django31
py{36,37,38,39,310}-django32
py{38,39,310}-django40
py{38,39,310}-djangomaster
flake8
[flake8]
# E402 module level import not at top of file
# E501 line too long
ignore = E501
[testenv]
deps =
django22: Django>=2.2,<3.0
django30: Django>=3.0,<3.1
django31: Django>=3.1,<3.2
django32: Django>=3.2,<3.3
django40: Django>=4.0,<4.1
djangomaster: https://github.com/django/django/archive/main.tar.gz
pytest
pytest-cov
pytest-django
pytest-pythonpath
commands=py.test --cov-report term-missing --cov django_cas_ng --tb native {posargs:tests}
[testenv:flake8]
deps=flake8
commands=flake8
skip_install = true
[testenv:isort]
deps = isort
commands = isort --check-only --diff django_cas_ng
skip_install = true