mirror of
https://github.com/matrix-org/synapse.git
synced 2025-01-29 19:39:15 +00:00
Ignore redundant casts in latest deps CI job (#16213)
This commit is contained in:
parent
3de82bb2af
commit
ed5e8a77ca
4
.github/workflows/latest_deps.yml
vendored
4
.github/workflows/latest_deps.yml
vendored
@ -57,8 +57,8 @@ jobs:
|
|||||||
# `pip install matrix-synapse[all]` as closely as possible.
|
# `pip install matrix-synapse[all]` as closely as possible.
|
||||||
- run: poetry update --no-dev
|
- run: poetry update --no-dev
|
||||||
- run: poetry run pip list > after.txt && (diff -u before.txt after.txt || true)
|
- run: poetry run pip list > after.txt && (diff -u before.txt after.txt || true)
|
||||||
- name: Remove warn_unused_ignores from mypy config
|
- name: Remove unhelpful options from mypy config
|
||||||
run: sed '/warn_unused_ignores = True/d' -i mypy.ini
|
run: sed -e '/warn_unused_ignores = True/d' -e '/warn_redundant_casts = True/d' -i mypy.ini
|
||||||
- run: poetry run mypy
|
- run: poetry run mypy
|
||||||
trial:
|
trial:
|
||||||
needs: check_repo
|
needs: check_repo
|
||||||
|
1
changelog.d/16213.misc
Normal file
1
changelog.d/16213.misc
Normal file
@ -0,0 +1 @@
|
|||||||
|
Fix the latest-deps CI job.
|
Loading…
Reference in New Issue
Block a user