From cc53391e85a9dce49f7ff276351fe49beaaecdf3 Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Mon, 13 Feb 2023 12:35:52 +0000 Subject: [PATCH] CI: Fix Python tests. --- .github/workflows/test.yml | 2 +- tox.ini | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 210a2a3..fd2cbde 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python: [2.7, 3.5, 3.7, 3.9] + python: [2.7,3.9] steps: - uses: actions/checkout@v2 diff --git a/tox.ini b/tox.ini index 113360a..891674f 100644 --- a/tox.ini +++ b/tox.ini @@ -1,11 +1,11 @@ [tox] -envlist = py{27,35,37,39},qa +envlist = py{27,39},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