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 737dc41 commit 75f793fCopy full SHA for 75f793f
tests/unit/test_client.py
@@ -8891,10 +8891,7 @@ def test_load_table_from_dataframe_with_csv_source_format(self):
8891
sent_config = load_table_from_file.mock_calls[0][2]["job_config"]
8892
assert sent_config.source_format == job.SourceFormat.CSV
8893
8894
- @unittest.skipIf(
8895
- pandas is None or PANDAS_INSTALLED_VERSION < PANDAS_MINIUM_VERSION,
8896
- "Only `pandas version >=1.0.0` supported",
8897
- )
+ @unittest.skipIf(pandas is None, "Requires `pandas`")
8898
@unittest.skipIf(pyarrow is None, "Requires `pyarrow`")
8899
def test_load_table_from_dataframe_w_higher_scale_decimal128_datatype(self):
8900
from google.cloud.bigquery.client import _DEFAULT_NUM_RETRIES
0 commit comments