We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4bcde0 commit 23f5928Copy full SHA for 23f5928
1 file changed
pyproject.toml
@@ -109,8 +109,9 @@ ban-relative-imports = "all"
109
strict = true
110
# restrict testpaths to speed up test discovery
111
testpaths = ["test"]
112
-# Turn all warnings into errors
113
-filterwarnings = ["error"]
+# Turn all warnings into errors,
+# except DeprecationWarnings (which we knowingly tolerate due to using old `protobuf` APIs).
114
+filterwarnings = ["error", "ignore::DeprecationWarning"]
115
116
[tool.mypy]
117
mypy_path = "gen"
0 commit comments