From 24d4ec15e9a83a8a134f21f06a34462a5b557625 Mon Sep 17 00:00:00 2001 From: shaowu Date: Wed, 7 Feb 2024 21:07:50 -0500 Subject: [PATCH] fix issues on the pytest version --- .github/workflows/run-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 989a18e..9133fd9 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -39,8 +39,8 @@ jobs: py.test test - name: Generate coverage report run: | - pip install pytest<=7.4.4 - pip install pytest-cov~=4.1.0 + pip install pytest==7.4.4 + pip install pytest-cov==4.1.0 pytest --cov=./ --cov-report=xml - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v3