From 0f18fe05ccdcb212b4e91b44e26cfdff88644eb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Tue, 9 Jan 2024 12:50:12 +0100 Subject: [PATCH] CI: Add tests for newer Pythons Note that by default, virtualenv does not install wheel to Python 3.12+ virtual environments. We set VIRTUALENV_WHEEL=bundle to force it, otherwise the test is quite useless. --- tests/tests.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/tests/tests.yml b/tests/tests.yml index 0a2a53f..a7aa53f 100644 --- a/tests/tests.yml +++ b/tests/tests.yml @@ -28,6 +28,15 @@ - smoke310: dir: python/smoke run: VERSION=3.10 METHOD=virtualenv ./venv.sh + - smoke311: + dir: python/smoke + run: VERSION=3.11 METHOD=virtualenv ./venv.sh + - smoke312: + dir: python/smoke + run: VERSION=3.12 METHOD=virtualenv VIRTUALENV_WHEEL=bundle ./venv.sh + - smoke313: + dir: python/smoke + run: VERSION=3.13 METHOD=virtualenv VIRTUALENV_WHEEL=bundle ./venv.sh - pyproject_pytest: dir: pyproject-rpm-macros/tests run: ./mocktest.sh python-pytest @@ -42,6 +51,9 @@ - python3.8 - python3.9 - python3.10-devel + - python3.11-devel + - python3.12-devel + - python3.13-devel - python2-devel - python3-devel - python3-tox