From 099d30f0445f27d29f3854ad80558189eefbd2de Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Fri, 18 Jul 2025 17:25:31 -0700 Subject: [PATCH] Only run Python 3.9 and 3.13 in end-to-end tests since 3.11 has issues in Alpine. --- scripts/run-full-tests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run-full-tests b/scripts/run-full-tests index f104938e..913e55df 100755 --- a/scripts/run-full-tests +++ b/scripts/run-full-tests @@ -25,5 +25,5 @@ export PATH="/root/.local/bin:$PATH" uv tool install tox --with tox-uv export COVERAGE_FILE=/tmp/.coverage -tox --workdir /tmp/.tox --sitepackages +tox --workdir /tmp/.tox -e py39,py313 --sitepackages tox --workdir /tmp/.tox --sitepackages -e end-to-end