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.
test_to_dataframe_iterable_w_bqstorage_max_results_warning
1 parent 6163711 commit 57be031Copy full SHA for 57be031
tests/unit/test_table.py
@@ -3285,6 +3285,9 @@ def test_to_dataframe_iterable_w_bqstorage(self):
3285
# Don't close the client if it was passed in.
3286
bqstorage_client._transport.grpc_channel.close.assert_not_called()
3287
3288
+ @unittest.skipIf(
3289
+ bigquery_storage is None, "Requires `google-cloud-bigquery-storage`"
3290
+ )
3291
@unittest.skipIf(pandas is None, "Requires `pandas`")
3292
def test_to_dataframe_iterable_w_bqstorage_max_results_warning(self):
3293
from google.cloud.bigquery import schema
0 commit comments