We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7367454 commit 1adc83fCopy full SHA for 1adc83f
.circleci/config.yml
@@ -3,6 +3,7 @@ workflows:
3
version: 2
4
test:
5
jobs:
6
+ - test-3.10
7
- test-3.9
8
- test-3.8
9
- test-3.7
@@ -13,9 +14,9 @@ workflows:
13
14
- test-pypy3
15
- test-pypy2
16
- test-3.9: &test-template
17
+ test-3.10: &test-template
18
docker:
- - image: python:3.9 # We run one test in non-alpine environment, just in case
19
+ - image: python:3.10 # We run one test in non-alpine environment, just in case
20
working_directory: ~/work
21
steps:
22
- checkout
@@ -36,6 +37,10 @@ jobs:
36
37
command: |
38
. venv/bin/activate
39
pytest -v
40
+ test-3.9:
41
+ <<: *test-template
42
+ docker:
43
+ - image: python:3.9-alpine
44
test-3.8:
45
<<: *test-template
46
0 commit comments