From c129388f6d5eea2f077dcb30b8d2bcda50263cae Mon Sep 17 00:00:00 2001 From: Kyle Shores Date: Sat, 23 Nov 2024 13:59:52 -0600 Subject: [PATCH] running tests after installing gnuplot --- .github/workflows/CI_Tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI_Tests.yml b/.github/workflows/CI_Tests.yml index 75b3e7f..be4d4f6 100644 --- a/.github/workflows/CI_Tests.yml +++ b/.github/workflows/CI_Tests.yml @@ -29,9 +29,6 @@ jobs: - name: Install this package run: pip install -e '.[dev]' - - name: Run tests and generate coverage reports - run: pytest --cov src/ - - name: Install gnuplot if: runner.os == 'Linux' run: sudo apt-get install gnuplot @@ -43,6 +40,9 @@ jobs: - name: Install gnuplot if: runner.os == 'Windows' run: choco install gnuplot + + - name: Run tests and generate coverage reports + run: pytest --cov src/ - name: Upload coverage reports to codecov if: runner.os == 'Linux'