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 d73bf09 commit 5ab5674Copy full SHA for 5ab5674
.github/workflows/tests.yml
@@ -37,18 +37,22 @@ jobs:
37
- name: Install dependencies
38
run: poetry install
39
- name: Run tests with coverage
40
- run: |
41
- poetry run coverage run
42
- poetry run coverage xml
+ run: poetry run coverage run
43
env:
44
POSTGRES_HOST: localhost
45
POSTGRES_USER: postgres
46
POSTGRES_PASSWORD: postgres
47
TESTING: "true"
48
SECRET_KEY: "very_secret_key"
49
OIDC_OP_JWKS_ENDPOINT: "http://nowhere.com"
+
+ - name: Export Coverage
50
+ if: always()
51
+ run: poetry run coverage xml
52
53
- name: Upload Coverage to Codecov
54
uses: codecov/codecov-action@v3
55
56
with:
57
verbose: true
58
files: coverage.xml
0 commit comments