-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
59 lines (51 loc) · 1.32 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
[tox]
minversion = 4.0.0
envlist = py3,black,pep8
skipsdist = True
[testenv]
basepython = python3.10
usedevelop = True
setenv =
PYTHONWARNINGS=default::DeprecationWarning
OS_STDOUT_CAPTURE=1
OS_STDERR_CAPTURE=1
OS_TEST_TIMEOUT=60
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands =
pytest -rP {posargs}
[testenv:pep8]
commands =
black {tox_root}
flake8 {posargs}
allowlist_externals = black
[testenv:black]
commands = black {tox_root} --check
allowlist_externals = black
[testenv:cover]
setenv =
VIRTUAL_ENV={envdir}
PYTHON=coverage run --source coral-credits --parallel-mode
commands =
stestr run {posargs}
coverage combine
coverage html -d cover
coverage xml -o cover/coverage.xml
coverage report
[testenv:docs]
deps = -r{toxinidir}/doc/requirements-docs.txt
commands = mkdocs build
[flake8]
# E123, E125 skipped as they are invalid PEP-8.
show-source = True
# TODO add headers and remove H102
# H301 skipped as neither isort nor black format like this.
# W503 line break before binary operator
ignore = E123,E125,H102, H301, W503
builtins = _
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build
# match black
max-line-length = 88
[pytest]
DJANGO_SETTINGS_MODULE = coral_credits.api.tests.test_settings
python_files = tests.py test_*.py *_tests.py