-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
45 lines (39 loc) · 711 Bytes
/
Copy pathtox.ini
File metadata and controls
45 lines (39 loc) · 711 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[tox]
envlist = py310,py311,py312
isolated_build = True
requires = tox-uv
[testenv]
runner = uv-venv-lock-runner
uv_seed = True
uv_resolution = highest
basepython =
py310: python3.10
py311: python3.11
py312: python3.12
deps =
pytest>=7.0
parameterized
mypy
-e .
passenv =
PYTHONPATH
AGENTSTACK_*
UV_*
PWD
HOME
PYTHONIOENCODING
setenv =
AGENTSTACK_TELEMETRY_OPT_OUT = true
AGENTSTACK_UPDATE_DISABLE = true
PYTHONPATH = {toxinidir}
UV_VIRTUALENV = {envdir}
PYTHONIOENCODING = utf-8
changedir = {toxinidir}
usedevelop = true
allowlist_externals =
pytest
mypy
uv
commands =
uv pip install -e .
pytest -vv {posargs}