| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- [tox]
- env_list = py39,py310,py311,py312,py313
- skip_missing_interpreters = true
- package = editable
- min_version = 4.0
- [testenv]
- deps =
- -r test_requirements.txt
- allowlist_externals =
- find
- sh
- ruff
- passenv = COVERAGE_FILE
- commands =
- pytest {posargs}
- ruff check
- ruff format --check
- codespell
- [testenv:test]
- commands =
- pytest {posargs}
- [testenv:end-to-end]
- package = editable
- system_site_packages = true
- deps =
- -r test_requirements.txt
- .
- pass_env = COVERAGE_FILE
- commands =
- pytest {posargs} --no-cov tests/end-to-end
- [testenv:lint]
- deps = []
- skip_install = true
- commands =
- ruff check --diff {posargs}
- [testenv:format]
- deps = []
- skip_install = true
- commands =
- ruff format {posargs}
- [testenv:spell]
- deps = {[testenv]deps}
- commands =
- codespell --write-changes
|