Skip to content

Commit cdb230c

Browse files
committed
ci: add py3.9 to gh-actions test matrix
1 parent e9349f2 commit cdb230c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
py-version: ['3.8']
11+
py-version: ['3.8', '3.9']
1212
name: Python ${{ matrix.py-version }} Test
1313
steps:
1414
- name: Checkout

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
11
[tox]
2-
envlist = py{36,37,38}
2+
envlist = py{36,37,38,39}
33
skip_missing_interpreters=True
44

55
[gh-actions]
66
python =
77
3.6: py36
88
3.7: py37
99
3.8: py38,lint
10+
3.9: py39
1011

1112
[testenv]
1213
basepython =
1314
py35: python3.5
1415
py36: python3.6
1516
py37: python3.7
1617
py38: python3.8
18+
py39: python3.9
1719
deps =
1820
pytest
1921
pytest-cov

0 commit comments

Comments
 (0)