File: tox.ini

package info (click to toggle)
python-structlog 20.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 920 kB
  • sloc: python: 3,585; makefile: 139
file content (101 lines) | stat: -rw-r--r-- 1,879 bytes parent folder | download
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
[pytest]
strict = true
addopts = -ra
testpaths = tests
filterwarnings =
    once::Warning


[tox]
envlist = lint,{py27,py35,py36,py37,py38,pypy,pypy3}-threads,{py27,py37,py38,pypy}-{greenlets,colorama},docs,pypi-description,manifest,coverage-report
isolated_build = True


[testenv:lint]
basepython = python3.7
skip_install = true
deps = pre-commit
passenv = HOMEPATH  # needed on Windows
commands = pre-commit run --all-files


[testenv]
extras = {env:TOX_AP_TEST_EXTRAS:tests}
deps =
    greenlets: greenlet
    threads,greenlets,colorama: twisted
    colorama: colorama
setenv =
    PYTHONHASHSEED = 0
commands = python -m pytest {posargs}


[testenv:py37-threads]
deps = twisted
setenv =
    PYTHONHASHSEED = 0
commands = coverage run -m pytest {posargs}


[testenv:py37-greenlets]
deps =
    greenlet
    twisted
setenv =
    PYTHONHASHSEED = 0
commands = coverage run -m pytest {posargs}


[testenv:py27-threads]
deps = twisted
setenv =
    PYTHONHASHSEED = 0
commands = coverage run -m pytest {posargs}


[testenv:py27-colorama]
deps =
   colorama
   twisted
setenv =
    PYTHONHASHSEED = 0
commands = coverage run -m pytest {posargs}


[testenv:docs]
basepython = python3.7
extras =
    docs
passenv = TERM
setenv =
    PYTHONHASHSEED = 0
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


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


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


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