Skip to content

Commit

Permalink
finally have the coverage correct
Browse files Browse the repository at this point in the history
  • Loading branch information
frehburg committed Oct 1, 2024
1 parent 6c74a7c commit 16b2bc9
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/test_coverage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Test Coverage

on:
push:
branches: [ develop ]
pull_request:
branches: [ main, develop ]

jobs:
run-ci:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Initialize Python
uses: actions/[email protected]
with:
python-version: '3.12'

- name: Install package
run: |
python3 -m pip install --editable .[test,docs]
- name: Run pytest tests
run: |
pytest
- name: Run coverage
run: |
pytest --cov=phenopacket_mapper

0 comments on commit 16b2bc9

Please sign in to comment.