We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f815fd commit 0c7a7fcCopy full SHA for 0c7a7fc
pyproject.toml
@@ -155,7 +155,15 @@ disable = [
155
]
156
157
[tool.pytest.ini_options]
158
-addopts = "-W=all -Werror -Wdefault::DeprecationWarning -Wdefault::PendingDeprecationWarning -vv"
+addopts = "-vv"
159
+filterwarnings = [
160
+ "error",
161
+ "once::DeprecationWarning",
162
+ "once::PendingDeprecationWarning",
163
+ # We use a raw string (single quote) to avoid the need to escape special
164
+ # chars as this is a regex
165
+ 'ignore:Protobuf gencode version .*exactly one major version older.*:UserWarning',
166
+]
167
testpaths = ["tests", "src"]
168
asyncio_mode = "auto"
169
asyncio_default_fixture_loop_scope = "function"
0 commit comments