Commit 937a60d 1 parent 9e415d9 commit 937a60d Copy full SHA for 937a60d
File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -112,9 +112,9 @@ jobs:
112
112
run : |
113
113
if [ ${{ github.repository_owner_id }} = ${{ env.OCADO_TECH_ORG_ID }} ]
114
114
then
115
- pipenv run pytest -n=auto --cov --cov-report=xml:${{ env.COVERAGE_REPORT }} -c=${{ env.PYPROJECT_TOML }} ${{ inputs.source-path }}
115
+ pipenv run pytest -n=auto --cov=. --cov-report=xml:${{ env.COVERAGE_REPORT }} -c=${{ env.PYPROJECT_TOML }} ${{ inputs.source-path }}
116
116
else
117
- pipenv run pytest -n=auto --cov --cov-fail-under=90 -c=${{ env.PYPROJECT_TOML }} ${{ inputs.source-path }}
117
+ pipenv run pytest -n=auto --cov=. --cov-fail-under=90 -c=${{ env.PYPROJECT_TOML }} ${{ inputs.source-path }}
118
118
fi
119
119
120
120
- name : 📈 Upload Coverage Reports to Codecov
Original file line number Diff line number Diff line change 208
208
] ,
209
209
"!python.testing.pytestArgs" : [
210
210
"-n=auto" ,
211
- "--cov" ,
211
+ "--cov=. " ,
212
212
"--cov-report=html" ,
213
213
"-c=pyproject.toml" ,
214
214
"."
You can’t perform that action at this time.
0 commit comments