We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fee0e57 commit e1b4c36Copy full SHA for e1b4c36
.github/workflows/.tests-and-publish-python.yml
@@ -80,6 +80,15 @@ jobs:
80
if: matrix.python-version == '3.10'
81
run: pytest fittrackee -n auto --maxprocesses=2 -p no:warnings --cov fittrackee --cov-report term-missing --maxfail=1
82
83
+ - name: Coveralls
84
+ if: ${{ matrix.python-version == '3.10' && github.repository == 'SamR1/FitTrackee' }}
85
+ env:
86
+ COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
87
+ run: |
88
+ pip install coveralls
89
+ git config --global --add safe.directory "$GITHUB_WORKSPACE"
90
+ coveralls --service=github-actions
91
+
92
- name: Pytest
93
if: matrix.python-version != '3.10'
94
run: pytest fittrackee -n auto --maxprocesses=2 -p no:warnings --maxfail=1
0 commit comments