diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9e866e8..e8e6358 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python: [2.7, 3.7, 3.9] + python: ['3.9', '3.10', '3.11'] steps: - uses: actions/checkout@v2 @@ -33,5 +33,5 @@ jobs: run: | python -m pip install coveralls coveralls --service=github - if: ${{ matrix.python == '3.9' }} + if: ${{ matrix.python == '3.11' }} diff --git a/library/tox.ini b/library/tox.ini index b937711..0312bce 100644 --- a/library/tox.ini +++ b/library/tox.ini @@ -1,11 +1,11 @@ [tox] -envlist = py{27,37,39},qa +envlist = py,qa skip_missing_interpreters = True [testenv] commands = python setup.py install - coverage run -m py.test -v -r wsx + coverage run -m pytest -v -r wsx coverage report deps = mock