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 8f8a6d1 commit ca95ad1Copy full SHA for ca95ad1
.github/workflows/run_test.yaml
@@ -23,10 +23,8 @@ jobs:
23
- name: Install dependencies
24
run: |
25
python -m pip install --upgrade pip && pip install -r requirements.txt
26
- - name: Test with pytest
+ - name: Test with pytest & Generate Coverage Report
27
28
- pip install pytest && pytest test_app_cicd.py
29
- continue-on-error: true
30
- - name: Generate Coverage Report
31
- run: |
32
- pip install coverage && coverage report -m
+ pip install pytest coverage
+ coverage run --append --source=pytest test_app_cicd.py
+ coverage report -m
0 commit comments