Skip to content

Commit

Permalink
Fix coverage report
Browse files Browse the repository at this point in the history
* Fix coverage report

* Added codecov badge
  • Loading branch information
LeonardSchmiester authored Sep 19, 2024
1 parent 3b9af75 commit 755e5e0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
pip install -e .[dev]
- name: Run tests with coverage
run: |
pytest --cov=pyphenopop --cov-report xml:coverage.xml
pytest --cov=./ --cov-report xml:coverage.xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Mixed Cell Population Identification Package
=======================
[![PyPI version](https://badge.fury.io/py/pyphenopop.svg)](https://badge.fury.io/py/pyphenopop)
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.7323577.svg)](https://doi.org/10.5281/zenodo.7323577)

[![codecov](https://codecov.io/gh/ocbe-uio/pyPhenoPop/graph/badge.svg?token=fihRjmYkMy)](https://codecov.io/gh/ocbe-uio/pyPhenoPop)


This package contains methods designed to determine the existance of
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ build-backend = "setuptools.build_meta"

[tool.pytest.ini_options]
testpaths = "tests"
addopts = "--cov=pyphenopop --cov-report=xml"
addopts = "--cov=./ --cov-report=xml"

0 comments on commit 755e5e0

Please sign in to comment.