Skip to content

Commit

Permalink
add code coverage to "minimum-dependencies" check in CI (#397)
Browse files Browse the repository at this point in the history
* add code coverage to "minimum-dependencies" check in CI

* Update README.rst

* Update _version.py
  • Loading branch information
lukashergt authored Sep 26, 2024
1 parent d367a4b commit b4b9d46
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,12 @@ jobs:
run: python -m pip install -e ".[test]"

- name: Test with pytest
run: python -m pytest tests
run: python -m pytest --cov=anesthetic tests

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}

latest-dependencies:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
anesthetic: nested sampling post-processing
===========================================
:Authors: Will Handley and Lukas Hergt
:Version: 2.8.14
:Version: 2.8.15
:Homepage: https://github.com/handley-lab/anesthetic
:Documentation: http://anesthetic.readthedocs.io/

Expand Down
2 changes: 1 addition & 1 deletion anesthetic/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.8.14'
__version__ = '2.8.15'

0 comments on commit b4b9d46

Please sign in to comment.