123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- [tox]
- envlist = py37,py38,py39,py310,py311
- skip_missing_interpreters = True
- skipsdist = True
- minversion = 3.14.1
- [testenv]
- usedevelop = True
- deps = -rtest_requirements.txt
- whitelist_externals =
- find
- sh
- passenv = COVERAGE_FILE
- commands =
- pytest {posargs}
- py38,py39,py310,py311: black --check .
- isort --check-only --settings-path setup.cfg .
- flake8 borgmatic tests
- codespell
- [testenv:black]
- commands =
- black {posargs} .
- [testenv:test]
- commands =
- pytest {posargs}
- [testenv:end-to-end]
- usedevelop = False
- deps = -rtest_requirements.txt
- .
- passenv = COVERAGE_FILE
- commands =
- pytest {posargs} --no-cov tests/end-to-end
- [testenv:isort]
- deps = {[testenv]deps}
- commands =
- isort --settings-path setup.cfg .
- [testenv:codespell]
- deps = {[testenv]deps}
- commands =
- codespell --write-changes
|