Skip to content

Commit 81f6d6e

Browse files
committed
CI: Fix outdated Python versions and broken tests.
1 parent c8eb2c1 commit 81f6d6e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python: [3.6, 3.7, 3.9]
14+
python: ['3.9', '3.10', '3.11']
1515

1616
steps:
1717
- uses: actions/checkout@v2
@@ -33,5 +33,5 @@ jobs:
3333
run: |
3434
python -m pip install coveralls
3535
coveralls --service=github
36-
if: ${{ matrix.python == '3.9' }}
36+
if: ${{ matrix.python == '3.11' }}
3737

library/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{36, 37, 38, 39},qa
2+
envlist = py,qa
33
skip_missing_interpreters = True
44

55
[testenv]
66
commands =
77
python setup.py install
8-
coverage run -m py.test -v -r wsx
8+
coverage run -m pytest -v -r wsx
99
coverage report
1010
deps =
1111
mock

0 commit comments

Comments
 (0)