diff --git a/pixi.lock b/pixi.lock index 49602660..d4f5e169 100644 --- a/pixi.lock +++ b/pixi.lock @@ -6236,7 +6236,7 @@ packages: name: llamabot version: 0.6.0 path: . - sha256: 951de02851fbf0fb3c624d48da2d07013861a8c6e7cc12c23a795731835326ee + sha256: 6baa34ce4b60f7b37c48902f9f112ea500aefd7aaddbcb444931ab8b317e8f8f requires_dist: - openai - panel>=1.3.0 diff --git a/pyproject.toml b/pyproject.toml index dd1ca2c8..6b997bf2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,7 +44,7 @@ whitelist-regex = [] color = true [tool.pytest.ini_options] -addopts = "-v --cov --cov-report term-missing -m 'not llm'" +addopts = "-v --cov --cov-report term-missing -m 'not llm_eval'" testpaths = [ "tests", ] diff --git a/tests/cli/test_docs.py b/tests/cli/test_docs.py index e47b1730..f99ad882 100644 --- a/tests/cli/test_docs.py +++ b/tests/cli/test_docs.py @@ -182,7 +182,7 @@ def next_prime(current_number): ) -@pytest.mark.llm +@pytest.mark.llm_eval @pytest.mark.parametrize( "original_docs,new_source_code,system_prompt,pydantic_model,expected_status", [(tuple(case.values())) for case in test_cases],