Skip to content

Commit 5211ff3

Browse files
committed
Fix tox so that it can run
The following changes are introduced: * Update the list of Python versions to test (3.9+) * Remove the now-unused `default` and `simplejson` factors * Switch to Poetry for dependency installation * Switch to running pytest to execute the test suite
1 parent 118ad61 commit 5211ff3

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

tox.ini

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
[tox]
2-
envlist = {py37,py38,py39,py310}-{default,simplejson}
2+
envlist =
3+
py{3.9,3.10,3.11,3.12,3.13}
34

45
[testenv]
6+
skip_install = true
57
deps =
6-
-rrequirements.txt
7-
-rrequirements_dev.txt
8+
poetry
9+
commands_pre =
10+
poetry install --with dev
811
commands =
9-
python setup.py test
12+
pytest

0 commit comments

Comments
 (0)