From a7c18ab2856da2e10169732b856e10b04a83fdb0 Mon Sep 17 00:00:00 2001 From: wsavran <35315438+wsavran@users.noreply.github.com> Date: Wed, 19 Feb 2025 21:18:21 -0800 Subject: [PATCH] Update build-test.yml - removed pinned vcrpy version - added python 3.12 and removed 3.8 to match our documentation --- .github/workflows/build-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index cf407487..9bb56913 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -14,7 +14,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-latest] - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.9', '3.10', '3.11', '3.12'] include: - os: windows-latest python-version: '3.10' @@ -38,7 +38,7 @@ jobs: - name: Test with pytest run: | - pip install vcrpy==4.3.1 pytest pytest-cov + pip install vcrpy pytest pytest-cov pytest --cov=./ --cov-config=.coveragerc - name: Upload coverage @@ -72,5 +72,5 @@ jobs: - name: Test with pytest run: | - pip install vcrpy==4.3.1 pytest pytest-cov + pip install vcrpy pytest pytest-cov pytest --cov=./ --cov-config=.coveragerc