mirror of
https://github.com/dgelessus/python-rsrcfork.git
synced 2024-12-28 12:32:56 +00:00
19 lines
401 B
INI
19 lines
401 B
INI
[tox]
|
|
# When adding a new Python version here, please also update the list of Python versions called by the GitHub Actions workflow (.github/workflows/ci.yml).
|
|
envlist = py{36,37,38},flake8,mypy
|
|
|
|
[testenv]
|
|
commands = {envpython} -m unittest discover --start-directory ./tests
|
|
|
|
[testenv:flake8]
|
|
deps =
|
|
flake8
|
|
flake8-bugbear
|
|
flake8-tabs
|
|
commands = flake8
|
|
|
|
[testenv:mypy]
|
|
deps =
|
|
mypy
|
|
commands = mypy
|