Skip to content

Commit 0cb3e1a

Browse files
committed
chore: add py39a alpha test
1 parent 7251825 commit 0cb3e1a

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

.circleci/config.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,13 @@ jobs:
4646
- run: tox -e coveralls<<parameters.cov_version>>
4747

4848
workflows:
49-
run-jobs:
49+
lint:
5050
jobs:
5151
- linter/pre-commit:
5252
python_version: 3.7.5
5353

54+
test-cpython:
55+
jobs:
5456
- toxpy:
5557
name: test-py3.5
5658
docker_image: '3.5'
@@ -77,9 +79,21 @@ workflows:
7779
parameters:
7880
cov_version: ['41', '5']
7981

82+
test-pypy:
83+
jobs:
8084
- toxpypy:
8185
name: test-pypy<<matrix.docker_image>>-cov<<matrix.cov_version>>
8286
matrix:
8387
parameters:
8488
cov_version: ['41', '5']
8589
docker_image: ['3-5', '3-6', '3-7']
90+
91+
test-alphaversions:
92+
jobs:
93+
- toxpy:
94+
name: test-py3.9-alpha-cov<<matrix.cov_version>>
95+
docker_image: '3.9.0a2'
96+
tox_environment: py39
97+
matrix:
98+
parameters:
99+
cov_version: ['41', '5']

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py35-cov41-{default,pyyaml},py{36,37,38,py3}-cov{41,5}-{default,pyyaml}
2+
envlist = py35-cov41-{default,pyyaml},py{36,37,38,39,py3}-cov{41,5}-{default,pyyaml}
33

44
[gh-actions]
55
python =

0 commit comments

Comments
 (0)