From 5211ff3d513fdc48ccb757dd9b786711de1bf4bb Mon Sep 17 00:00:00 2001 From: Kurt McKee Date: Mon, 23 Jun 2025 16:01:24 -0500 Subject: [PATCH] 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 --- tox.ini | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/tox.ini b/tox.ini index 0f99522..48f29b4 100644 --- a/tox.ini +++ b/tox.ini @@ -1,9 +1,12 @@ [tox] -envlist = {py37,py38,py39,py310}-{default,simplejson} +envlist = + py{3.9,3.10,3.11,3.12,3.13} [testenv] +skip_install = true deps = - -rrequirements.txt - -rrequirements_dev.txt + poetry +commands_pre = + poetry install --with dev commands = - python setup.py test + pytest