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 826ed80 commit fd4420cCopy full SHA for fd4420c
.github/workflows/test.yml
@@ -23,7 +23,7 @@ jobs:
23
- name: Install deps
24
run: poetry install
25
- name: Run tests
26
- run: poetry run pytest
+ run: poetry run coverage run -m pytest
27
env:
28
CLIENT_ID: ${{ secrets.CLIENT_ID }}
29
USERNAME: ${{ secrets.USERNAME }}
@@ -32,8 +32,8 @@ jobs:
32
OTPCODE: ${{ secrets.OTPCODE }}
33
USER_POOL_ID: ${{ secrets.USER_POOL_ID }}
34
- name: Publish code coverage
35
- uses: paambaati/codeclimate-action@v6.0.0
+ uses: paambaati/codeclimate-action@v9.0.0
36
37
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
38
with:
39
- coverageCommand: coverage xml
+ coverageCommand: poetry run coverage xml
0 commit comments