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 90e98f0 commit a0423f8Copy full SHA for a0423f8
.github/workflows/run-tests.yml
@@ -30,4 +30,10 @@ jobs:
30
# Run tests with coverage
31
- name: Run tests
32
run: |
33
- pytest -v --cov=src/problem_solving_questions --cov-report=html --cov-report=term tests/
+ pytest -v --cov=src/problem_solving_questions --cov-report=xml --cov-report=term tests/
34
+
35
+ - name: Upload coverage reports to Codecov
36
+ uses: codecov/codecov-action@v5
37
+ with:
38
+ token: ${{ secrets.CODECOV_TOKEN }}
39
+ slug: gsaini/python-getting-started
0 commit comments