From 2107dbe2031d7d660d9ffa9c7c42f19d819613ac Mon Sep 17 00:00:00 2001 From: Hai Nguyen Date: Sun, 18 Feb 2024 22:15:50 +0700 Subject: [PATCH] chore: Update skip reason Signed-off-by: Hai Nguyen --- .../tests/integration/offline_store/test_feature_logging.py | 2 +- .../offline_store/test_universal_historical_retrieval.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/python/tests/integration/offline_store/test_feature_logging.py b/sdk/python/tests/integration/offline_store/test_feature_logging.py index 9989be1101f..6be1edb06f5 100644 --- a/sdk/python/tests/integration/offline_store/test_feature_logging.py +++ b/sdk/python/tests/integration/offline_store/test_feature_logging.py @@ -30,7 +30,7 @@ @pytest.mark.parametrize("pass_as_path", [True, False], ids=lambda v: str(v)) @pytest.mark.skipif( pd.__version__ < "2.2.0" and pd.__version__ >= "2.0.0", - reason="Requires pandas version 2.2.0 or higher", + reason="Skip test due to pandas issue 55730 for pandas version 2.0.0 - 2.1.0", # https://github.com/pandas-dev/pandas/issues/55730 ) def test_feature_service_logging(environment, universal_data_sources, pass_as_path): diff --git a/sdk/python/tests/integration/offline_store/test_universal_historical_retrieval.py b/sdk/python/tests/integration/offline_store/test_universal_historical_retrieval.py index 5a357c2c49b..b269e2adaac 100644 --- a/sdk/python/tests/integration/offline_store/test_universal_historical_retrieval.py +++ b/sdk/python/tests/integration/offline_store/test_universal_historical_retrieval.py @@ -515,7 +515,7 @@ def test_historical_features_with_no_ttl( @pytest.mark.universal_offline_stores @pytest.mark.skipif( pd.__version__ < "2.2.0" and pd.__version__ >= "2.0.0", - reason="Requires pandas version 2.2.0 or higher", + reason="Skip test due to pandas issue 55730 for pandas version 2.0.0 - 2.1.0", # https://github.com/pandas-dev/pandas/issues/55730 ) def test_historical_features_from_bigquery_sources_containing_backfills(environment):