From 838e0be2bdb16d8010821810e88b2b795b2aa9d6 Mon Sep 17 00:00:00 2001 From: Paul Ganssle Date: Wed, 27 May 2020 22:47:46 -0400 Subject: [PATCH] Add pypy to GHA test matrix --- .github/workflows/python-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 1a6b3a07..4c7345ba 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -7,7 +7,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: ['3.6', '3.7', '3.8'] + python-version: ['3.6', '3.7', '3.8', 'pypy3'] os: ["ubuntu-latest", "windows-latest", "macos-latest"] tzdata_extras: ["", "tzdata"] env: @@ -26,7 +26,7 @@ jobs: python -m pip install --upgrade pip tox - name: Run tests run: | - tox + python -m tox - name: Report coverage run: | tox -e coverage-report,codecov