Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,13 @@ jobs:
- name: Install pymsis
run: |
python -m pip install --upgrade pip
python -m pip install -v .[test]
python -m pip install meson-python ninja numpy setuptools_scm
# Need to install the package in editable mode for coverage
python -m pip install -v --no-build-isolation -e .[test]

- name: Test with pytest
run: |
# TODO: Get coverage for other modules without specifying pymsis.msis directly
pytest --color=yes --cov=pymsis.msis --cov pymsis.utils --cov-report=xml --pyargs pymsis
pytest --color=yes --cov --cov-report=xml

- name: Upload code coverage
uses: codecov/codecov-action@v5
Loading