forked from Styria-Digital/django-rest-framework-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
132 lines (123 loc) · 3.27 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
[tox]
envlist =
docs,manifest,
py{27,35}-dj111-drf{37,38,39}-pyjwt1-codecov
py{36,37}-dj111-drf{37,38,39}-pyjwt{1,2}-codecov
py35-dj20-drf{37,38,39}-pyjwt1-codecov
py{36,37}-dj20-drf{37,38,39}-pyjwt{1,2}-codecov
py35-dj21-drf{37,38,39,310}-pyjwt1-codecov
py{36,37}-dj21-drf{37,38,39,310}-pyjwt{1,2}-codecov
py35-dj22-drf{37,38,39,310}-pyjwt1-codecov
py{36,37}-dj22-drf{37,38,39,310}-pyjwt{1,2}-codecov
py{36,37,38}-dj30-drf{311}-pyjwt{1,2}-codecov
py{36,37,38}-dj{30,31,32}-drf{311,312}-pyjwt{1,2}-codecov
py{39,310}-dj{30,31,32}-drf{311,312,313}-pyjwt{1,2}-codecov
py{39,310}-dj40-drf313-pyjwt{1,2}-codecov
[travis:env]
TRAVIS =
true: codecov
[testenv]
description = run the test suite
usedevelop = true
passenv =
CI TRAVIS TRAVIS_*
setenv =
PYTHONDONTWRITEBYTECODE=1
PYTHONWARNINGS=once
PYTHONPATH={toxinidir}/demo
deps =
dj111: Django>=1.11,<1.12
dj20: Django>=2.0,<2.1
dj21: Django>=2.1,<2.2
dj22: Django>=2.2,<2.3
dj30: Django>=3.0,<3.1
dj31: Django>=3.1,<3.2
dj32: Django>=3.2,<3.3
dj40: Django>=4.0,<4.1
drf37: djangorestframework>=3.7,<3.8
drf38: djangorestframework>=3.8,<3.9
drf39: djangorestframework>=3.9,<3.10
drf310: djangorestframework>=3.10,<3.11
drf311: djangorestframework>=3.11,<3.12
drf312: djangorestframework>=3.12,<3.13
drf313: djangorestframework>=3.13,<3.14
pyjwt1: PyJWT[crypto]>=1.5.2,<2.0.0
pyjwt2: PyJWT[crypto]>=2.0.0,<3.0.0
cryptography<3.4 # Avoiding the "needs Rust" versions
coverage: coverage
codecov: codecov
# bash is used to create the codecov flags from the envname,
# only when codecov is used in the envname
whitelist_externals =
/bin/bash
/usr/bin/bash
commands =
pytest {posargs} --cov=rest_framework_jwt
codecov: bash -ec 'flags={envname}; flags="$\{flags//-/,\}"; codecov --name={envname} --flags="$flags"'
extras =
test
[testenv:docs]
description = build the documentation
basepython = python3.6
commands = mkdocs {posargs:build}
extras =
test
docs
[testenv:changelog]
description = build the changelog
basepython = python3
deps =
towncrier==18.6.0
skip_install = true
commands =
python -V
towncrier {posargs}
[testenv:manifest]
basepython = python3
deps = check-manifest
skip_install = true
commands = check-manifest
[testenv:release]
description = build the changelog, bump the package version, commit and tag
basepython=python2.7
skip_install = true
whitelist_externals =
git
tox
passenv =
HOME
deps =
bumpversion==0.5.3
commands_pre =
tox -e changelog -- --yes
git commit -m "Build changelog"
bumpversion {posargs:minor}
commands =
git push origin
git push origin --tags
[testenv:serve]
description = run the development server
usedevelop = true
changedir = {toxinidir}/demo
setenv =
DJANGO_SETTINGS_MODULE=demo.settings.dev
extras =
dev
commands =
python manage.py runserver {posargs}
[testenv:deploy]
description = build the package and deploy it to PyPI.org
basepython = python3
isolated_build = True
skip_install = true
setenv =
PYTHONPATH = {toxinidir}
requires =
setuptools>=42.0.2
wheel>=0.33.6
deps =
twine>=3.1.1
commands_pre =
python setup.py sdist bdist_wheel
commands =
twine upload {posargs} --skip-existing dist/*