You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
addopts = "-W=all -Werror -Wdefault::DeprecationWarning -Wdefault::PendingDeprecationWarning '-Wdefault:Protobuf gencode version 5.27.2 is exactly one major version older than the runtime version:UserWarning' -vv"
148
+
addopts = "-vv"
149
+
filterwarnings = [
150
+
"error",
151
+
"once::DeprecationWarning",
152
+
"once::PendingDeprecationWarning",
153
+
# We ignore warnings about protobuf gencode version being one version older
154
+
# than the current version, as this is supported by protobuf, and we expect to
155
+
# have such cases. If we go too far, we will get a proper error anyways.
156
+
# We use a raw string (single quotes) to avoid the need to escape special
157
+
# characters as this is a regex.
158
+
'ignore:Protobuf gencode version .*exactly one major version older.*:UserWarning',
0 commit comments