Skip to content

Commit

Permalink
ci: add py3.9 to gh-actions test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
edaniszewski committed Nov 5, 2020
1 parent e9349f2 commit cdb230c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
py-version: ['3.8']
py-version: ['3.8', '3.9']
name: Python ${{ matrix.py-version }} Test
steps:
- name: Checkout
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
[tox]
envlist = py{36,37,38}
envlist = py{36,37,38,39}
skip_missing_interpreters=True

[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38,lint
3.9: py39

[testenv]
basepython =
py35: python3.5
py36: python3.6
py37: python3.7
py38: python3.8
py39: python3.9
deps =
pytest
pytest-cov
Expand Down

0 comments on commit cdb230c

Please sign in to comment.