Browse Source

Ignore missing imports for parameterized. (#11285)

This was due to a conflict between #11282, which changed
mypy configuration, and #11228, a normal change.
Patrick Cloke 2 years ago
parent
commit
0ef69ddbdc
2 changed files with 4 additions and 0 deletions
  1. 1 0
      changelog.d/11285.misc
  2. 3 0
      mypy.ini

+ 1 - 0
changelog.d/11285.misc

@@ -0,0 +1 @@
+Require all files in synapse/ and tests/ to pass mypy unless specifically excluded.

+ 3 - 0
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