We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4664a45 commit bab1780Copy full SHA for bab1780
tests/unit/test_client.py
@@ -8749,10 +8749,7 @@ def test_load_table_from_dataframe_with_csv_source_format(self):
8749
sent_config = load_table_from_file.mock_calls[0][2]["job_config"]
8750
assert sent_config.source_format == job.SourceFormat.CSV
8751
8752
- @unittest.skipIf(
8753
- pandas is None or PANDAS_INSTALLED_VERSION < PANDAS_MINIUM_VERSION,
8754
- "Only `pandas version >=1.0.0` supported",
8755
- )
+ @unittest.skipIf(pandas is None, "Requires `pandas`")
8756
@unittest.skipIf(pyarrow is None, "Requires `pyarrow`")
8757
def test_load_table_from_dataframe_w_higher_scale_decimal128_datatype(self):
8758
from google.cloud.bigquery.client import _DEFAULT_NUM_RETRIES
0 commit comments