From 6146c7b4f59ada8d1400afc28fb44962ad64f7c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Wed, 30 Dec 2020 10:15:22 +0100 Subject: [PATCH] Add Python 3.9 and 3.10 to the CI tests --- tests/tests.yml | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/tests/tests.yml b/tests/tests.yml index cab111c..5d131c7 100644 --- a/tests/tests.yml +++ b/tests/tests.yml @@ -32,19 +32,27 @@ - smoke38: dir: python/smoke run: VERSION=3.8 METHOD=virtualenv ./venv.sh - - smoke38nd: + - smoke39: dir: python/smoke - run: VERSION=3.8 METHOD=virtualenv-no-download ./venv.sh - - smoke38sp: + run: VERSION=3.9 METHOD=virtualenv ./venv.sh + - smoke39nd: dir: python/smoke - run: VERSION=3.8 METHOD=virtualenv-seeder-pip ./venv.sh + run: VERSION=3.9 METHOD=virtualenv-no-download ./venv.sh + - smoke39sp: + dir: python/smoke + run: VERSION=3.9 METHOD=virtualenv-seeder-pip ./venv.sh + - smoke310: + dir: python/smoke + run: VERSION=3.10 METHOD=virtualenv ./venv.sh required_packages: - gcc - virtualenv - - python27 - - python35 - - python36 - - python37 - - python38 + - python2.7 + - python3.5 + - python3.6 + - python3.7 + - python3.8 + - python3.9 + - python3.10 - python3-devel - python3-tox