Skip to content

Commit 90fd53b

Browse files
committed
removed minimum check
1 parent 34259a7 commit 90fd53b

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/system/test_pandas.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -312,10 +312,7 @@ def test_load_table_from_dataframe_w_automatic_schema(bigquery_client, dataset_i
312312
]
313313

314314

315-
@pytest.mark.skipif(
316-
PANDAS_INSTALLED_VERSION[0:2] in ["0."],
317-
reason="Only `pandas version >=1.0.0` is supported",
318-
)
315+
@pytest.mark.skipif(pandas is None, reason="Requires `pandas`")
319316
def test_load_table_from_dataframe_w_nullable_int64_datatype(
320317
bigquery_client, dataset_id
321318
):

0 commit comments

Comments
 (0)