forked from pennersr/django-allauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
96 lines (88 loc) · 2.08 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[tox]
envlist =
py{35,36,37}-django20
py{35,36,37}-django21
py{35,36,37,38,39}-django22
py{36,37,38,39}-django30
py{36,37,38,39}-django31
py{36,37,38,39,310}-django32
py{38,39,310}-django40
py{38,39,310}-django41
py{310}-djangomain
docs
checkqa
standardjs
[testenv]
setenv =
PYTHONWARNINGS = all
deps =
# 6.x drops py35/36 support
coverage==5.5
django20: Django==2.0.*
django21: Django==2.1.*
django22: Django==2.2.*
django30: Django==3.0.*
django31: Django==3.1.*
django32: Django==3.2.*
django40: Django==4.0.*
django41: Django==4.1.*
djangomain: git+https://github.com/django/django.git@main#egg=django
commands =
coverage run manage.py test {posargs:allauth}
coverage report
coverage html
allowlist_externals =
/usr/bin/env
make
[testenv:docs]
skip_install = True
deps =
Sphinx
whitelist_externals = make
commands =
make -C {toxinidir}/docs html
[testenv:checkqa]
skip_install = True
ignore_errors = True
deps =
flake8==4.0.1
isort==5.10.1
black==22.3.0
commands =
flake8 {posargs:{toxinidir}/allauth}
isort --check-only --skip-glob '*/migrations/*' --diff {posargs:{toxinidir}/allauth}
black --check {posargs:{toxinidir}/allauth} {posargs:{toxinidir}/setup.py}
[testenv:isort]
basepython = python3.7
skip_install = True
deps =
isort >5
commands =
isort --skip-glob '*/migrations/*' {posargs:{toxinidir}/allauth}
[testenv:standardjs]
skip_install = True
commands =
/usr/bin/env bash -c "mkdir -p {toxinidir}/node_modules"
/usr/bin/env npm install standard --no-lockfile --no-progress --non-interactive --silent
/usr/bin/env bash -c "find {toxinidir}/allauth -name '*.js' | xargs {toxinidir}/node_modules/.bin/standard"
[coverage:run]
include = allauth*
[flake8]
exclude = migrations
[gh-actions:env]
PYTHON_VER =
3.5: py35
3.6: py36
3.7: py37
3.8: py38
3.9: py39
3.10: py310
DJANGO =
main: djangomain
2.0: django20
2.1: django21
2.2: django22
3.0: django30
3.1: django31
3.2: django32
4.0: django40