Skip to content

Commit 5ca5dbf

Browse files
committed
Add testing for Python 3.9
1 parent c3f0f76 commit 5ca5dbf

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
python: ["3.5", "3.6", "3.7", "3.8"]
13+
python: ["3.5", "3.6", "3.7", "3.8", "3.9"]
1414
os: [ubuntu-latest, windows-latest]
1515
include:
1616
- python: "3.5"
@@ -21,6 +21,8 @@ jobs:
2121
tox_env: "py37"
2222
- python: "3.8"
2323
tox_env: "py38"
24+
- python: "3.9"
25+
tox_env: "py39"
2426

2527
steps:
2628
- uses: actions/checkout@v1

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
"Programming Language :: Python :: 3.6",
3535
"Programming Language :: Python :: 3.7",
3636
"Programming Language :: Python :: 3.8",
37+
"Programming Language :: Python :: 3.9",
3738
"Topic :: Software Development :: Testing",
3839
],
3940
)

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[tox]
2-
envlist = py{35,36,37,38}, linting
2+
envlist = py{35,36,37,38,39},linting
33

44
[testenv]
55
deps =
66
pytest-xdist
77
commands =
8-
pytest tests
8+
pytest -n1 tests
99

1010
[testenv:linting]
1111
skipsdist = True

0 commit comments

Comments
 (0)