-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtox.ini
74 lines (63 loc) · 1.55 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
; -------------------------------- Environment ------------------------------- ;
[tox]
minversion = 4.4.6
envlist =
py39
black
flake8
docs
isort
[testenv]
usedevelop = true
passenv = SOCON_SETTINGS_MODULE,PYTHONPATH,HOME
deps =
-rtests/requirement/requirements.txt
setenv =
coverage: _PYTEST_TOX_COVERAGE_RUN=--cov-report xml --cov=socon
commands =
pytest tests/ --basetemp="{envtmpdir}" {posargs:{env:_PYTEST_TOX_COVERAGE_RUN:}}
[testenv:black]
basepython = python3
usedevelop = false
deps = black >= 23.1.0
changedir = {toxinidir}
commands = black --check --diff .
[testenv:flake8]
basepython = python3
usedevelop = false
deps = flake8 >= 4.0.1
changedir = {toxinidir}
commands = flake8 .
[testenv:docs]
basepython = python3
usedevelop = false
deps =
-r{toxinidir}/docs/requirements.txt
changedir = docs
commands =
sphinx-build -W --keep-going -b spelling . _build
[testenv:isort]
basepython = python3
usedevelop = false
deps = isort >= 5.12.0
changedir = {toxinidir}
commands = isort --check-only --diff socon tests
; ---------------------------------- Release --------------------------------- ;
[testenv:release-note]
description = Create release note
basepython = python3
usedevelop = True
deps =
towncrier<23.6.0
commands = towncrier build
; ------------------------------- Configuration ------------------------------ ;
[flake8]
exclude = build,.git,venv,.tox
extend-ignore = E203, E501
max-line-length = 88
max-complexity = 20
[isort]
profile = black
lines_between_types = 1
src_paths = socon, tests
known_first_party = socon