summaryrefslogtreecommitdiff
path: root/tox.ini
blob: 362b5235998d8ff2adc55106e4fb5ad3622542ba (plain)
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
[pytest]
strict = true
addopts = -ra
testpaths = tests
filterwarnings =
    once::Warning
    ignore:::pympler[.*]


[gh-actions]
python =
    2.7: py27
    3.5: py35
    3.6: py36
    3.7: py37, docs
    3.8: py38, lint, manifest, typing


[gh-actions:env]
PLATFORM =
    ubuntu-latest: linux
    windows-latest: windows


[tox]
envlist =
    lint
    typing
    py{35,36,37,38}-crypto-{linux,windows}
    py{35,36,37,38}-nocrypto-{linux,windows}
    manifest
    docs
    pypi-description
    coverage-report
isolated_build = True


[testenv]
extras =
    tests
    crypto: cryptography
commands = coverage run -m pytest {posargs}


[testenv:docs]
basepython = python3.7
extras = docs
commands =
    sphinx-build -n -T -W -b html -d {envtmpdir}/doctrees docs docs/_build/html
    sphinx-build -n -T -W -b doctest -d {envtmpdir}/doctrees docs docs/_build/html
    python -m doctest README.rst


[testenv:typing]
basepython = python3.8
extras = dev
commands = mypy --ignore-missing-imports jwt


[testenv:lint]
basepython = python3.8
extras = dev
passenv = HOMEPATH  # needed on Windows
commands = pre-commit run --all-files


[testenv:manifest]
basepython = python3.8
deps = check-manifest
skip_install = true
commands = check-manifest


[testenv:pypi-description]
basepython = python3.8
skip_install = true
deps =
    twine
    pip >= 18.0.0
commands =
    pip wheel -w {envtmpdir}/build --no-deps .
    twine check {envtmpdir}/build/*


[testenv:coverage-report]
basepython = python3.8
skip_install = true
deps = coverage[toml]>=5.0.2
commands =
    coverage combine
    coverage report