From 22294fce5bf5949ff9f6401e8708af80b7b3b438 Mon Sep 17 00:00:00 2001 From: Gavin D'souza Date: Thu, 28 Jul 2022 11:50:10 +0530 Subject: [PATCH] ci: Add PY3.10 to runner matrix Reduce existing runners based on lesser variance to breakages --- .travis.yml | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) diff --git a/.travis.yml b/.travis.yml index 780847ae..76618d5a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,18 +25,18 @@ matrix: env: TEST=bench script: python bench/tests/test_init.py TestBenchInit.basic + - name: "Python 3.10 Basic Setup" + python: "3.10" + env: TEST=bench + script: python bench/tests/test_init.py TestBenchInit.basic + - name: "Python 3.7 Production Setup" python: 3.7 env: TEST=bench script: python bench/tests/test_setup_production.py TestSetupProduction.production - - name: "Python 3.8 Production Setup" - python: 3.8 - env: TEST=bench - script: python bench/tests/test_setup_production.py TestSetupProduction.production - - - name: "Python 3.9 Production Setup" - python: 3.9 + - name: "Python 3.10 Production Setup" + python: "3.10" env: TEST=bench script: python bench/tests/test_setup_production.py TestSetupProduction.production @@ -45,13 +45,8 @@ matrix: env: TEST=bench script: python -m unittest -v bench.tests.test_utils && python -m unittest -v bench.tests.test_init - - name: "Python 3.8 Tests" - python: 3.8 - env: TEST=bench - script: python -m unittest -v bench.tests.test_utils && python -m unittest -v bench.tests.test_init - - - name: "Python 3.9 Tests" - python: 3.9 + - name: "Python 3.10 Tests" + python: "3.10" env: TEST=bench script: python -m unittest -v bench.tests.test_utils && python -m unittest -v bench.tests.test_init