From 3ea792fb56b84e087356e30d019642c738a6b06d Mon Sep 17 00:00:00 2001 From: Enam Mijbah Noor Date: Thu, 14 Apr 2022 20:36:13 +0600 Subject: [PATCH] Added python 3.10 tests to CircleCI --- .circleci/config.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d7d80ca..65a3521 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,6 +3,7 @@ workflows: version: 2 test: jobs: + - test-3.10 - test-3.9 - test-3.8 - test-3.7 @@ -13,9 +14,9 @@ workflows: - test-pypy3 - test-pypy2 jobs: - test-3.9: &test-template + test-3.10: &test-template docker: - - image: python:3.9 # We run one test in non-alpine environment, just in case + - image: python:3.10 # We run one test in non-alpine environment, just in case working_directory: ~/work steps: - checkout @@ -36,6 +37,10 @@ jobs: command: | . venv/bin/activate pytest -v + test-3.9: + <<: *test-template + docker: + - image: python:3.9-alpine test-3.8: <<: *test-template docker: