Skip to content
Snippets Groups Projects
Unverified Commit ed5e8a77 authored by David Robertson's avatar David Robertson Committed by GitHub
Browse files

Ignore redundant casts in latest deps CI job (#16213)

parent 3de82bb2
No related branches found
No related tags found
No related merge requests found
...@@ -57,8 +57,8 @@ jobs: ...@@ -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
......
Fix the latest-deps CI job.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment