From bb6bcb8becc99875eefeb064934aaf31af717a18 Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Wed, 8 Jan 2025 16:41:51 +0000 Subject: [PATCH 1/2] CI: Bump Python versions. --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 213fdea..8cc9681 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.5, 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' }} From 703599f9e90fce8264bed42917591d76b47fb7b7 Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Wed, 8 Jan 2025 17:30:10 +0000 Subject: [PATCH 2/2] CI: py.test to pytest. --- library/tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/tox.ini b/library/tox.ini index cc3d9bf..8a27383 100644 --- a/library/tox.ini +++ b/library/tox.ini @@ -5,7 +5,7 @@ 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