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 104294f commit a31c405Copy full SHA for a31c405
.github/workflows/python-test-dev.yml
@@ -23,7 +23,20 @@ jobs:
23
run: |
24
cd howlongtobeatpy
25
python -m pip install --upgrade pip
26
+ pip install nose codecov
27
pip install .
28
- name: Test
29
- nosetests howlongtobeatpy
30
+ nosetests howlongtobeatpy --with-coverage
31
+ coverage xml
32
+ - name: Upload Coverage codecov
33
+ env:
34
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
35
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
36
+ run: |
37
+ codecov
38
+ - name: SonarCloud Scan
39
+ uses: sonarsource/sonarcloud-github-action@master
40
41
42
+ SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
0 commit comments