Skip to content

Commit e16284e

Browse files
committed
added supported version of python for test environment
1 parent ba38bb8 commit e16284e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python: [3.7, 3.8]
10+
python: [3.6, 3.7, 3.8, 3.9, 3.10]
1111

1212
steps:
1313
- uses: actions/checkout@v1

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[tox]
2-
envlist = py38
2+
envlist = py36, py37, py38, py39, py310
33
skipsdist = True
44

55
[testenv]
66
passenv = *
77
deps = -rrequirements/test.txt
88
commands =
99
coverage run --append -m unittest discover tests
10-
coverage report
10+
coverage report

0 commit comments

Comments
 (0)