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 70afd90 commit 9140873Copy full SHA for 9140873
tests/integration/test_config_handling.py
@@ -160,7 +160,7 @@ def test_rp_log_batch_payload_size(mock_client_init):
160
def filter_agent_call(warn):
161
category = getattr(warn, 'category', None)
162
if category:
163
- return category.__name__ != 'PytestAssertRewriteWarning'
+ return category.__name__ == 'DeprecationWarning' or category.__name__ == 'RuntimeWarning'
164
return False
165
166
0 commit comments