We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 845b242 commit a23803cCopy full SHA for a23803c
.github/workflows/test.yml
@@ -33,6 +33,11 @@ jobs:
33
run: |
34
black --check $(git ls-files '*.py')
35
flake8 $(git ls-files '*.py')
36
- - name: Run tests
+ - name: Run tests with coverage
37
38
- python -m unittest test.py
+ coverage run -m unittest test.py
39
+ - name: Upload coverage to Codecov
40
+ uses: codecov/codecov-action@v4.0.1
41
+ with:
42
+ token: ${{ secrets.CODECOV_TOKEN }}
43
+ slug: ercanserteli/video-condenser
requirements-dev.txt
@@ -4,3 +4,4 @@ flake8==7.0.0
4
flake8-bugbear==24.2.6
5
flake8-pyproject==1.2.3
6
pre-commit==3.6.2
7
+coverage==7.4.3
0 commit comments