Skip to content

Commit

Permalink
Update test_client.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Linchin authored and Gaurang033 committed Dec 14, 2023
1 parent 041286b commit c242634
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/unit/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -8891,10 +8891,7 @@ def test_load_table_from_dataframe_with_csv_source_format(self):
sent_config = load_table_from_file.mock_calls[0][2]["job_config"]
assert sent_config.source_format == job.SourceFormat.CSV

@unittest.skipIf(
pandas is None or PANDAS_INSTALLED_VERSION < PANDAS_MINIUM_VERSION,
"Only `pandas version >=1.0.0` supported",
)
@unittest.skipIf(pandas is None, "Requires `pandas`")
@unittest.skipIf(pyarrow is None, "Requires `pyarrow`")
def test_load_table_from_dataframe_w_higher_scale_decimal128_datatype(self):
from google.cloud.bigquery.client import _DEFAULT_NUM_RETRIES
Expand Down

0 comments on commit c242634

Please sign in to comment.