test(backend): ✅ add @skip for crf tests that can only run locally
This commit is contained in:
parent
d24e95c091
commit
165fd8efd6
2 changed files with 3 additions and 0 deletions
|
@ -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])
|
||||
|
||||
|
|
Loading…
Reference in a new issue