We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16663c0 commit 7b7d4d4Copy full SHA for 7b7d4d4
1 file changed
.github/workflows/python_app.yml
@@ -23,7 +23,7 @@ jobs:
23
- name: Install dependencies
24
run: |
25
python -m pip install --upgrade pip
26
- pip install flake8 pytest coverage black Cython
+ pip install flake8 pytest pytest-cov coverage black Cython
27
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
28
pip install -e .
29
- name: Code formatting with Black
@@ -40,8 +40,10 @@ jobs:
40
pytest
41
- name: Generate coverage report
42
43
+ pytest --cov --cov-branch --cov-report=xml
44
coverage run -m pytest
- - name: Upload Coverage to Codecov
45
- uses: codecov/codecov-action@v1
+ - name: Upload coverage reports to Codecov
46
+ uses: codecov/codecov-action@v5
47
with:
- fail_ci_if_error: true
48
+ token: ${{ secrets.CODECOV_TOKEN }}
49
+ slug: andr1976/ramdecom
0 commit comments