Skip to content

Commit

Permalink
running tests after installing gnuplot
Browse files Browse the repository at this point in the history
  • Loading branch information
K20shores committed Nov 23, 2024
1 parent b7ffc9a commit c129388
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI_Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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'
Expand Down

0 comments on commit c129388

Please sign in to comment.