Skip to content

Commit 7da3942

Browse files
committed
tox: Fix tests on 3.12
Requires tox to upgrade pip
1 parent 1969358 commit 7da3942

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

tox.ini

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,19 @@ requires =
44

55
# Keep in sync with 'requires_python' in pyproject.toml
66
# HACK: Does not test 3.12, because removal of pkgutil.ImpImporter breaks things
7-
envlist = py{39,310,311,313}
7+
envlist = py{39,310,311,312,313}
88
isolated_build = true
99

1010
[testenv]
1111
description = run unit tests
1212
labels = test
1313
deps =
1414
pytest
15+
pytest-asyncio
1516
pytest-sugar
17+
pydantic
1618
commands =
17-
pytest {posargs:tests}
19+
pytest {posargs:tests}
20+
# need to upgrade pip or else 3.12 breaks
21+
download = true
22+

0 commit comments

Comments
 (0)