From 8cfc009b9a65a7f3ae35763feb2cb985cea45ddc Mon Sep 17 00:00:00 2001 From: Martin Stancsics Date: Mon, 2 Dec 2024 09:50:19 +0100 Subject: [PATCH] Just skip tests instead --- tests/test_formula.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_formula.py b/tests/test_formula.py index 1a6e46fa..4737e12b 100644 --- a/tests/test_formula.py +++ b/tests/test_formula.py @@ -457,6 +457,7 @@ def test_all_names_against_from_pandas(df, categorical_format): assert mat_from_formula.term_names == mat_from_pandas.term_names +@pytest.mark.skip(reason="We handle categorical names differently from formulaic") @pytest.mark.parametrize( "ensure_full_rank", [True, False], ids=["full_rank", "all_levels"] )