Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ workflows:
version: 2
test:
jobs:
- test-3.10
- test-3.9
- test-3.8
- test-3.7
Expand All @@ -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
Expand All @@ -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:
Expand Down