forked from hynek/structlog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
67 lines (53 loc) · 1.33 KB
/
tox.ini
File metadata and controls
67 lines (53 loc) · 1.33 KB
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
[tox]
envlist = isort,{py27,py34,py35,py36,pypy,pypy3}-{threads,greenlets},{py27,py36}-{colorama,oldtwisted},flake8,docs,readme,manifest,coverage-report
[testenv]
extras = tests
deps =
greenlets: greenlet
threads,greenlets,colorama: twisted
oldtwisted: twisted < 17
colorama: colorama
setenv =
PYTHONHASHSEED = 0
commands = coverage run --parallel -m pytest {posargs}
[testenv:flake8]
basepython = python3.6
extras = tests
deps =
flake8
flake8-isort
commands = flake8 src tests setup.py conftest.py docs/conf.py
[testenv:isort]
basepython = python3.6
extras = tests
# Needs a full install so isort can determine own/foreign imports.
deps =
isort
commands =
isort --recursive setup.py conftest.py src tests
[testenv:docs]
basepython = python3.6
extras =
docs
passenv = TERM
setenv =
PYTHONHASHSEED = 0
commands =
sphinx-build -W -b html -d {envtmpdir}/doctrees docs docs/_build/html
sphinx-build -W -b doctest -d {envtmpdir}/doctrees docs docs/_build/html
[testenv:readme]
basepython = python3.6
deps = readme_renderer
skip_install = true
commands = python setup.py check -r -s
[testenv:manifest]
basepython = python3.6
skip_install = true
deps = check-manifest
commands = check-manifest
[testenv:coverage-report]
deps = coverage
skip_install = true
commands =
coverage combine
coverage report