Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Ignore redundant casts in latest deps CI job (#16213)
Browse files Browse the repository at this point in the history
  • Loading branch information
David Robertson authored Aug 30, 2023
1 parent 3de82bb commit ed5e8a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/latest_deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ jobs:
# `pip install matrix-synapse[all]` as closely as possible.
- run: poetry update --no-dev
- run: poetry run pip list > after.txt && (diff -u before.txt after.txt || true)
- name: Remove warn_unused_ignores from mypy config
run: sed '/warn_unused_ignores = True/d' -i mypy.ini
- name: Remove unhelpful options from mypy config
run: sed -e '/warn_unused_ignores = True/d' -e '/warn_redundant_casts = True/d' -i mypy.ini
- run: poetry run mypy
trial:
needs: check_repo
Expand Down
1 change: 1 addition & 0 deletions changelog.d/16213.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix the latest-deps CI job.

0 comments on commit ed5e8a7

Please sign in to comment.