Skip to content
Open
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
10 changes: 9 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,15 @@ jobs:
pip install pytest pytest-cov
pip install ./target
if [ "${{ matrix.python-version }}" = "3.14" ]; then
pytest -v --cov=openminds --cov-report term pipeline/tests
pytest -v --cov=openminds --cov-report term --cov-report lcov pipeline/tests
else
pytest -v pipeline/tests
fi

- name: Upload coverage to Coveralls
if: matrix.python-version == '3.14'
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: coverage.lcov
parallel: false
Loading