forked from MirrorHub/synapse
Ignore missing imports for parameterized. (#11285)
This was due to a conflict between #11282, which changed mypy configuration, and #11228, a normal change.
This commit is contained in:
parent
3b951445a7
commit
0ef69ddbdc
2 changed files with 4 additions and 0 deletions
1
changelog.d/11285.misc
Normal file
1
changelog.d/11285.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Require all files in synapse/ and tests/ to pass mypy unless specifically excluded.
|
3
mypy.ini
3
mypy.ini
|
@ -363,6 +363,9 @@ ignore_missing_imports = True
|
|||
[mypy-opentracing]
|
||||
ignore_missing_imports = True
|
||||
|
||||
[mypy-parameterized.*]
|
||||
ignore_missing_imports = True
|
||||
|
||||
[mypy-phonenumbers.*]
|
||||
ignore_missing_imports = True
|
||||
|
||||
|
|
Loading…
Reference in a new issue