-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtox.ini
75 lines (65 loc) · 1.13 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
[tox]
isolated_build = True
envlist = clean,py3,report
[pytest]
addopts =
--durations=5
--benchmark-disable
--benchmark-columns="min,max,mean,stddev,ops,rounds"
--cov --cov-append --cov-report=
--black
--mypy
--flake8
norecursedirs =
docs
[coverage:paths]
source =
timewinder
.tox/py*/lib/python*/site-packages/timewinder
[coverage:run]
branch = true
parallel = true
source_pkgs = timewinder
[coverage:report]
show_missing = true
precision = 2
[coverage:xml]
output = .coverage.xml
[testenv]
setenv = PYTHONPATH={toxinidir}
deps = -rrequirements-dev.txt
commands = pytest --benchmark-enable
depends =
py3: clean
report: py3
[testenv:report]
deps = coverage
skip_install = true
commands =
coverage report -i
coverage xml
[testenv:clean]
deps = coverage
skip_install = true
commands = coverage erase
[testenv:docs]
changedir=docs
deps = -rrequirements-doc.txt
commands = sphinx-build . _build
[flake8]
max-line-length = 100
ignore =
E203,
E266,
E501,
E741,
W503,
per-file-ignores =
__init__.py: F401
max-complexity = 18
select = B, C, E, F, W, T4, B9
exclude =
.git,
.tox,
__pycache__,
dist,