check-patroni/tox.ini

50 lines
1.2 KiB
INI
Raw Permalink Normal View History

2022-07-12 14:31:23 +02:00
[tox]
# the versions specified here are overridden by github workflow
envlist = lint, mypy, py{37,38,39,310,311}
2022-07-12 14:31:23 +02:00
skip_missing_interpreters = True
[testenv]
extras = test
2022-07-12 14:31:23 +02:00
commands =
pytest {toxinidir}/check_patroni {toxinidir}/tests {posargs:-vv --log-level=debug}
2022-07-12 14:31:23 +02:00
[testenv:lint]
skip_install = True
deps =
codespell
2022-07-12 14:31:23 +02:00
black
flake8
isort
2022-07-12 14:31:23 +02:00
commands =
codespell {toxinidir}/check_patroni {toxinidir}/tests {toxinidir}/docs/ {toxinidir}/RELEASE.md {toxinidir}/CONTRIBUTING.md
2022-07-12 14:31:23 +02:00
black --check --diff {toxinidir}/check_patroni {toxinidir}/tests
flake8 {toxinidir}/check_patroni {toxinidir}/tests
isort --check --diff {toxinidir}/check_patroni {toxinidir}/tests
2022-07-12 14:31:23 +02:00
[testenv:mypy]
deps =
mypy == 0.961
commands =
2023-03-12 19:43:06 +01:00
# we need to install types-requests
mypy --install-types --non-interactive
[testenv:build]
deps =
wheel
setuptools
twine
allowlist_externals =
rm
commands =
rm --verbose --recursive --force {toxinidir}/dist/
python -m build
python -m twine check dist/*
[testenv:upload]
# requires a check_patroni section in ~/.pypirc
skip_install = True
deps =
twine
commands =
python -m twine upload --repository check_patroni dist/*