-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathtox.ini
68 lines (52 loc) · 1.33 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
# =============================================================================
# FLAKE 8 & Coverage
# =============================================================================
[flake8]
exclude = __pycache__,feets/libs/*,.ipynb_checkpoints
ignore=E402,W504,E203,W503
[report]
omit =
feets/libs/*
[pytest]
addopts = -n "auto"
# =============================================================================
# TOX
# =============================================================================
[tox]
envlist = style, py37, py38, coverage
[testenv]
deps =
ipdb
pytest
pytest-unordered
pytest-xdist
commands =
pytest tests/ {posargs}
[testenv:style]
skip_install = True
usedevelop = False
deps = flake8
flake8-import-order
flake8-black
commands =
flake8 setup.py feets tests {posargs}
[testenv:coverage]
usedevelop = True
deps =
coverage
pytest-cov
pytest-unordered
pytest-xdist
commands =
- coverage erase
- pytest -q tests/ --cov=feets --cov-append --cov-report=
coverage report --fail-under=90 -m --rcfile=tox.ini
[testenv:docs]
description = "Invoke sphinx-build to build th HTML docs"
usedevelop = True
skip_install = False
changedir = doc
deps =
-r {toxinidir}/doc/requirements.txt
commands =
sphinx-build -W -b html -d {envtmpdir}/doctrees source {envtmpdir}/html