-
-
Notifications
You must be signed in to change notification settings - Fork 575
Expand file tree
/
Copy pathtox.ini
More file actions
29 lines (25 loc) · 657 Bytes
/
tox.ini
File metadata and controls
29 lines (25 loc) · 657 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# 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 = py310,py311,py312,py313,py314,py310-pyright,p313-pyright
[testenv]
passenv = *
allowlist_externals =
uv
install_command = uv pip install --no-binary lxml --no-binary xmlsec {opts} {packages}
deps =
py{310,311,312,313,314}: -e .[dev,all]
commands =
pytest
[testenv:py310-pyright]
deps =
-e .[dev,all]
commands =
pyright
[testenv:py313-pyright]
deps =
-e .[dev,all]
commands =
pyright