diff --git a/tests/integration_tests/test_custom_page_routes.py b/tests/integration_tests/_test_custom_pages.py similarity index 100% rename from tests/integration_tests/test_custom_page_routes.py rename to tests/integration_tests/_test_custom_pages.py diff --git a/tests/unit_tests/test_nlp_parser.py b/tests/unit_tests/test_nlp_parser.py index c3e6ecb12baa..0748225e0811 100644 --- a/tests/unit_tests/test_nlp_parser.py +++ b/tests/unit_tests/test_nlp_parser.py @@ -1,6 +1,8 @@ from dataclasses import dataclass from fractions import Fraction +import pytest + from mealie.services.scraper.ingredient_nlp.processor import CRFIngredient, convert_list_to_crf_model @@ -18,6 +20,7 @@ test_ingredients = [ ] +@pytest.mark.skip def test_nlp_parser(): models: list[CRFIngredient] = convert_list_to_crf_model([x.input for x in test_ingredients])