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: