test(backend): add @skip for crf tests that can only run locally

This commit is contained in:
hay-kot 2021-08-31 14:39:54 -08:00
parent d24e95c091
commit 165fd8efd6
2 changed files with 3 additions and 0 deletions

View file

@ -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])