generated from Hochfrequenz/python_template_repository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
115 lines (104 loc) · 3.14 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[tox]
envlist =
tests
linting
coverage
type_check
generate_bo4e
spellcheck
skip_missing_interpreters = True
skipsdist = True
[testenv]
commands = python -m pip install --upgrade pip
[testenv:tests]
# the tests environment is called by the Github action that runs the unit tests
deps =
-r requirements.txt
.[tests]
setenv = PYTHONPATH = {toxinidir}/src
commands = python -m pytest --basetemp={envtmpdir} {posargs}
[testenv:linting]
# the linting environment is called by the Github Action that runs the linter
deps =
{[testenv:tests]deps}
{[testenv:generate_bo4e]deps}
.[linting]
# add your fixtures like e.g. pytest_datafiles here
setenv = PYTHONPATH = {toxinidir}/src
commands =
pylint ibims
pylint unittests --rcfile=unittests/.pylintrc
pylint bo4e/bo4e_updater.py
# add single files (ending with .py) or packages here
[testenv:type_check]
# the type_check environment checks the type hints using mypy
setenv = PYTHONPATH = {toxinidir}/src
deps =
{[testenv:tests]deps}
{[testenv:generate_bo4e]deps}
.[type_check]
commands =
mypy --show-error-codes src/ibims
mypy --show-error-codes unittests
mypy --show-error-codes bo4e/bo4e_updater.py
# add single files (ending with .py) or packages here
[testenv:spellcheck]
# the spellcheck environment checks the code for typos
setenv = PYTHONPATH = {toxinidir}/src
deps =
{[testenv:tests]deps}
.[spellcheck]
commands =
codespell --ignore-words=domain-language.txt --skip "src/ibims/bo4e/**" src/ibims
# add single files (ending with .py) or packages here
[testenv:coverage]
# the coverage environment is called by the Github Action that runs the coverage measurement
changedir = unittests
deps =
{[testenv:tests]deps}
.[coverage]
setenv = PYTHONPATH = {toxinidir}/src
commands =
coverage run -m pytest --basetemp={envtmpdir} {posargs}
coverage html --omit .tox/*,unittests/*
coverage report --fail-under 80 --omit .tox/*,unittests/*
[testenv:dev]
# the dev environment contains everything you need to start developing on your local machine.
deps =
{[testenv:tests]deps}
{[testenv:linting]deps}
{[testenv:type_check]deps}
{[testenv:coverage]deps}
{[testenv:spellcheck]deps}
{[testenv:docs]deps}
{[testenv:generate_bo4e]deps}
.[formatting]
pre-commit
commands =
python -m pip install --upgrade pip
pip install -r requirements.txt
pre-commit install
[testenv:test_packaging]
skip_install = true
deps =
.[test_packaging]
commands =
python -m build
twine check dist/*
[testenv:docs]
deps =
-r requirements.txt
-r dev_requirements/requirements-docs.txt
commands =
sphinx-build -b html -d {envtmpdir}/doctrees docs {envtmpdir}/html
sphinx-build -n -T -b doctest -d {envtmpdir}/doctrees docs docs/_build/html
python -m doctest README.md
[testenv:generate_bo4e]
deps =
.[generate_bo4e]
setenv =
file|bo4e/tox.env
commands =
bost -o "tmp/bo4e_schemas" -t "{env:BO4E_VERSION}" -c "bo4e/bo4e_config.json" --clear-output \
--cache-dir "tmp/bo4e_cache"
bo4e-generator -i "tmp/bo4e_schemas" -o "src/ibims/bo4e" --clear-output -t "{env:BO4E_VERSION}"