Release candidate 0.2.24rc1

This commit is contained in:
github-actions[bot] 2025-11-12 22:39:09 +00:00
parent 61448e0664
commit 7475005ae3
2 changed files with 3 additions and 3 deletions

View file

@ -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"

View file

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