forked from socon-dev/socon-embedded
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
60 lines (51 loc) · 1.27 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
; -------------------------------- Environment ------------------------------- ;
[tox]
minversion = 4.4.6
envlist =
py39
black
flake8
isort
[testenv]
passenv = SOCON_SETTINGS_MODULE,PYTHONPATH,HOME
deps =
-r tests/requirements.txt
-r 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
deps = black >= 23.1.0
changedir = {toxinidir}
commands = black --check --diff .
[testenv:flake8]
basepython = python3
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
deps = isort >= 5.12.0
changedir = {toxinidir}
commands = isort --check-only --diff socon tests
; ------------------------------- 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