We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61316c1 commit c7a96e9Copy full SHA for c7a96e9
1 file changed
.github/workflows/test.yml
@@ -34,7 +34,14 @@ jobs:
34
pip install pytest pytest-cov
35
pip install ./target
36
if [ "${{ matrix.python-version }}" = "3.14" ]; then
37
- pytest -v --cov=openminds --cov-report term pipeline/tests
+ pytest -v --cov=openminds --cov-report term --cov-report lcov pipeline/tests
38
else
39
pytest -v pipeline/tests
40
fi
41
+
42
+ - name: Upload coverage to Coveralls
43
+ if: matrix.python-version == '3.14'
44
+ uses: coverallsapp/github-action@v2
45
+ with:
46
+ github-token: ${{ secrets.GITHUB_TOKEN }}
47
+ path-to-lcov: coverage.lcov
0 commit comments