1
1
mirror of https://github.com/yandex/pgmigrate.git synced 2024-09-19 16:17:24 +03:00
pgmigrate/tox.ini

56 lines
1.5 KiB
INI
Raw Normal View History

# Tox (http://tox.testrun.org/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
envlist = py27, py311, flake8, pylint, yapf
[testenv:py27]
allowlist_externals = rm
commands = rm -rf htmlcov
coverage erase
2017-03-30 17:07:35 +03:00
coverage run -p --include=pgmigrate.py {envbindir}/behave -q
coverage combine
coverage html pgmigrate.py
coverage report --fail-under=100 pgmigrate.py
deps = behave
importlib
coverage
2017-12-03 01:39:30 +03:00
func_timeout
future
[testenv:py311]
allowlist_externals = rm
2017-03-30 17:07:35 +03:00
commands = rm -rf htmlcov
coverage erase
coverage run -p --include=pgmigrate.py {envbindir}/behave -q
coverage combine
coverage html pgmigrate.py
coverage report --fail-under=100 pgmigrate.py
deps = behave
coverage
2017-12-03 01:39:30 +03:00
func_timeout
[testenv:{flake8,pylint,yapf}]
envdir = {toxworkdir}/.lint_env
commands =
flake8: flake8 pgmigrate.py setup.py
pylint: pylint pgmigrate.py
yapf: yapf -pd pgmigrate.py
2022-11-24 10:45:48 +03:00
deps = flake8==5.0.4
flake8-string-format
flake8-isort==5.0.0
flake8-commas
flake8-quotes
flake8-copyright
flake8-pep3101
pylint
yapf==0.32.0
[flake8]
copyright-check = True
2019-04-14 21:09:35 +03:00
select = E,F,W,C
2023-01-01 17:17:39 +03:00
copyright-regexp = Copyright\s+(\(C\)\s+)?(\d{4}-)?2016-2023\s+%(author)s
copyright-author = Yandex LLC