mirror of
https://github.com/kristoferssolo/kristofersxyz.git
synced 2025-10-21 18:30:34 +00:00
26 lines
429 B
INI
26 lines
429 B
INI
[tox]
|
|
minversion = 3.8.0
|
|
envlist = py310, flake8, mypy
|
|
isolated_build = true
|
|
|
|
[gh-actions]
|
|
python =
|
|
3.10: py310, mypy, flake8
|
|
|
|
[testenv]
|
|
setenv =
|
|
PYTHONPATH = {toxinidir}
|
|
deps =
|
|
-r{toxinidir}/requirements_dev.txt
|
|
|
|
[testenv:flake8]
|
|
basepython = python3.10
|
|
deps = flake8
|
|
commands = flake8 kristofersxyz
|
|
|
|
[testenv:mypy]
|
|
basepython = python3.10
|
|
deps =
|
|
-r{toxinidir}/requirements_dev.txt
|
|
commands = mypy kristofersxyz
|