Skip to content

Commit 7988bd3

Browse files
fix: update multiple deps
* fix(deps): update all patch dependencies * ci: export coverage even on failure * ci: update docker compose images * chore(deps): update all patch dependencies * chore(deps): update dependency mypy to v1 * fix: update sentry-sdk coverage sphinxcontrib-mermaid m2r2 * ci: update mypy --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 2236820 commit 7988bd3

File tree

4 files changed

+370
-196
lines changed

4 files changed

+370
-196
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,18 +37,22 @@ jobs:
3737
- name: Install dependencies
3838
run: poetry install
3939
- name: Run tests with coverage
40-
run: |
41-
poetry run coverage run
42-
poetry run coverage xml
40+
run: poetry run coverage run
4341
env:
4442
POSTGRES_HOST: localhost
4543
POSTGRES_USER: postgres
4644
POSTGRES_PASSWORD: postgres
4745
TESTING: "true"
4846
SECRET_KEY: "very_secret_key"
4947
OIDC_OP_JWKS_ENDPOINT: "http://nowhere.com"
48+
49+
- name: Export Coverage
50+
if: always()
51+
run: poetry run coverage xml
52+
5053
- name: Upload Coverage to Codecov
5154
uses: codecov/codecov-action@v3
55+
if: always()
5256
with:
5357
verbose: true
5458
files: coverage.xml

devops/docker-compose.example.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ services:
7272
- 6379:6379
7373

7474
rabbitmq:
75-
image: bitnami/rabbitmq:3.11.16
75+
image: bitnami/rabbitmq:3.12.0
7676
profiles:
7777
- data
7878
- all
@@ -158,7 +158,7 @@ services:
158158

159159
# This optional and it's used to monitor the API
160160
statsd-exporter:
161-
image: prom/statsd-exporter:v0.23.1
161+
image: prom/statsd-exporter:v0.24.0
162162
ports:
163163
- "9125:9125/udp"
164164
- "9102:9102"

0 commit comments

Comments
 (0)