Skip to content

Commit 1adc83f

Browse files
emnooreigenein
authored andcommitted
Added python 3.10 tests to CircleCI
1 parent 7367454 commit 1adc83f

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.circleci/config.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ workflows:
33
version: 2
44
test:
55
jobs:
6+
- test-3.10
67
- test-3.9
78
- test-3.8
89
- test-3.7
@@ -13,9 +14,9 @@ workflows:
1314
- test-pypy3
1415
- test-pypy2
1516
jobs:
16-
test-3.9: &test-template
17+
test-3.10: &test-template
1718
docker:
18-
- 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
1920
working_directory: ~/work
2021
steps:
2122
- checkout
@@ -36,6 +37,10 @@ jobs:
3637
command: |
3738
. venv/bin/activate
3839
pytest -v
40+
test-3.9:
41+
<<: *test-template
42+
docker:
43+
- image: python:3.9-alpine
3944
test-3.8:
4045
<<: *test-template
4146
docker:

0 commit comments

Comments
 (0)