Skip to content

Commit be85288

Browse files
committed
test: ignore PendingDeprecationWarning in tqdm error test
1 parent 0af9073 commit be85288

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

packages/google-cloud-bigquery/tests/unit/test_table.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4143,6 +4143,8 @@ def test_to_dataframe_tqdm_error(self):
41434143
# dependency and are unrelated to the code under test.
41444144
if "Pyparsing" in warning.category.__name__:
41454145
continue
4146+
if issubclass(warning.category, PendingDeprecationWarning):
4147+
continue
41464148
self.assertIn(
41474149
warning.category,
41484150
[UserWarning, DeprecationWarning, tqdm.TqdmExperimentalWarning],

0 commit comments

Comments
 (0)