Skip to content

Commit

Permalink
chore: Update skip reason
Browse files Browse the repository at this point in the history
Signed-off-by: Hai Nguyen <[email protected]>
  • Loading branch information
sudohainguyen committed Feb 18, 2024
1 parent f898881 commit 2107dbe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 2107dbe

Please sign in to comment.