-
Notifications
You must be signed in to change notification settings - Fork 8
/
tox.ini
30 lines (26 loc) · 807 Bytes
/
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
# Same dir as setup.py
# DOC https://github.com/tox-dev/tox/blob/master/tox.ini
# CONFIGS https://medium.com/analytics-vidhya/essential-developer-tools-for-improving-your-python-code-71616254134b
[tox]
envlist = py37, py38, py39, py310, py311
isolated_build = true
[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
3.11: py311
; [testenv]
; description= run the tests with pytest under {basepython}
; deps = pytest, safety
; setenv =
; PIP_DISABLE_PIP_VERSION_CHECK = 1
; COVERAGE_FILE = {env:COVERAGE_FILE:{toxworkdir}/.coverage.{envname}}
; commands =
; python -V
; # flake8 ./pipewire_python/
; # pylint ./pipewire_python/ # broken 2021-09-07
; # mypy ./pipewire_python/ # broken 2021-06-20
; # black ./pipewire_python/
; safety check