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 65f78bc commit d91d822Copy full SHA for d91d822
1 file changed
packages/google-cloud-bigquery/tests/unit/test_table.py
@@ -5771,6 +5771,8 @@ def test_to_dataframe_delegated_when_supported_with_range_types(self):
5771
5772
db_dtypes = pytest.importorskip("db_dtypes")
5773
pandas = pytest.importorskip("pandas")
5774
+ if not hasattr(pandas, "ArrowDtype"):
5775
+ pytest.skip("pandas.ArrowDtype is not available in this environment.")
5776
pyarrow = pytest.importorskip("pyarrow")
5777
mock_pandas_gbq = mock.Mock()
5778
mock_pandas_gbq.pandas.from_row_iterator.return_value = mock.sentinel.dataframe
0 commit comments