From 4ddeae68c4023a932f93d749c6d17648898a99b7 Mon Sep 17 00:00:00 2001 From: Eric Gentry Date: Tue, 31 May 2022 15:51:47 -0400 Subject: [PATCH] Bump version of pypy being tested to pypy-3.8 (from 3.7). --- .github/workflows/pythonpackage.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index cd13a62fa..c05a3a998 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -13,10 +13,10 @@ jobs: fail-fast: false matrix: os: [ubuntu, macos, windows] - python-version: ["3.7", "3.8", "3.9", "3.10", "pypy-3.7"] + python-version: ["3.7", "3.8", "3.9", "3.10", "pypy-3.8"] exclude: - os: windows - python-version: pypy-3.7 + python-version: pypy-3.8 steps: - name: Checkout uses: actions/checkout@v2 @@ -33,11 +33,11 @@ jobs: run: | jupyter nbclassic -h - name: Test with pytest and coverage - if: ${{ matrix.python-version != 'pypy-3.7' }} + if: ${{ matrix.python-version != 'pypy-3.8' }} run: | python -m pytest -vv --cov=nbclassic --cov-report term-missing:skip-covered || python -m pytest -vv --cov=nbclassic --cov-report term-missing:skip-covered - name: Run the tests on pypy - if: ${{ matrix.python-version == 'pypy-3.7' }} + if: ${{ matrix.python-version == 'pypy-3.8' }} run: | python -m pytest -vv || python -m pytest -vv -lf - name: Test Running Server