From 7475005ae3120510eca0aa59252a16e040a487f2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 12 Nov 2025 22:39:09 +0000 Subject: [PATCH] Release candidate 0.2.24rc1 --- pyproject.toml | 2 +- tests/integration/conftest.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d62287556..5d3246708 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ required-version = ">=0.7.0" [project] name = "llama_stack" -version = "0.2.23" +version = "0.2.24rc1" authors = [{ name = "Meta Llama", email = "llama-oss@meta.com" }] description = "Llama Stack" readme = "README.md" diff --git a/tests/integration/conftest.py b/tests/integration/conftest.py index 4735264c3..a6266ea8c 100644 --- a/tests/integration/conftest.py +++ b/tests/integration/conftest.py @@ -244,7 +244,7 @@ def pytest_generate_tests(metafunc): pytest_plugins = ["tests.integration.fixtures.common"] -def pytest_ignore_collect(path: str, config: pytest.Config) -> bool: +def pytest_ignore_collect(collection_path: Path, config: pytest.Config) -> bool: """Skip collecting paths outside the selected suite roots for speed.""" suite = config.getoption("--suite") if not suite: @@ -255,7 +255,7 @@ def pytest_ignore_collect(path: str, config: pytest.Config) -> bool: if not roots: return False - p = Path(str(path)).resolve() + p = collection_path.resolve() # Only constrain within tests/integration to avoid ignoring unrelated tests integration_root = (Path(str(config.rootpath)) / "tests" / "integration").resolve()