Skip to content

Commit

Permalink
fix cov install
Browse files Browse the repository at this point in the history
  • Loading branch information
robelgeda committed Oct 31, 2024
1 parent 6e98290 commit 750aaa1
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,12 @@ jobs:
continue-on-error: true

coverage:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4

Expand All @@ -48,6 +53,9 @@ jobs:
- name: Install dependencies
run: pip install pytest pytest-cov

- name: Install petrofit
run: pip install .

- name: Run tests
run: pytest --cov --cov-report=xml

Expand Down

0 comments on commit 750aaa1

Please sign in to comment.