borgmatic/tox.ini

48 lines
851 B
INI
Raw Normal View History

[tox]
env_list = py37,py38,py39,py310,py311
2019-05-14 19:19:56 +00:00
skip_missing_interpreters = True
package = editable
min_version = 4.0
[testenv]
deps =
-r test_requirements.txt
whitelist_externals =
find
sh
passenv = COVERAGE_FILE
commands =
2019-05-19 21:53:32 +00:00
pytest {posargs}
2023-03-16 20:29:37 +00:00
py38,py39,py310,py311: black --check .
isort --check-only --settings-path setup.cfg .
flake8 borgmatic tests
2023-04-01 18:03:59 +00:00
codespell
[testenv:black]
commands =
black {posargs} .
2019-05-19 11:07:18 +00:00
[testenv:test]
commands =
pytest {posargs}
[testenv:end-to-end]
package = editable
deps =
-r test_requirements.txt
pymongo==4.4.1
.
pass_env = COVERAGE_FILE
commands =
pytest {posargs} --no-cov tests/end-to-end
[testenv:isort]
deps = {[testenv]deps}
commands =
isort --settings-path setup.cfg .
2023-04-01 18:03:59 +00:00
[testenv:codespell]
deps = {[testenv]deps}
commands =
codespell --write-changes