forked from Styria-Digital/django-rest-framework-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
98 lines (91 loc) · 2.19 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
[tox]
envlist =
docs,manifest,
py{27,35,36,37}-dj111-drf{37,38,39}-codecov
py{35,36,37}-dj20-drf{37,38,39}-codecov
py{35,36,37}-dj21-drf{37,38,39,310}-codecov
py{35,36,37}-dj22-drf{37,38,39,310}-codecov
py{36,37,38}-dj30-drf{311}-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
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
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
commands = mkdocs 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}