Skip to content

Commit 7475005

Browse files
Release candidate 0.2.24rc1
1 parent 61448e0 commit 7475005

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ required-version = ">=0.7.0"
77

88
[project]
99
name = "llama_stack"
10-
version = "0.2.23"
10+
version = "0.2.24rc1"
1111
authors = [{ name = "Meta Llama", email = "[email protected]" }]
1212
description = "Llama Stack"
1313
readme = "README.md"

tests/integration/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ def pytest_generate_tests(metafunc):
244244
pytest_plugins = ["tests.integration.fixtures.common"]
245245

246246

247-
def pytest_ignore_collect(path: str, config: pytest.Config) -> bool:
247+
def pytest_ignore_collect(collection_path: Path, config: pytest.Config) -> bool:
248248
"""Skip collecting paths outside the selected suite roots for speed."""
249249
suite = config.getoption("--suite")
250250
if not suite:
@@ -255,7 +255,7 @@ def pytest_ignore_collect(path: str, config: pytest.Config) -> bool:
255255
if not roots:
256256
return False
257257

258-
p = Path(str(path)).resolve()
258+
p = collection_path.resolve()
259259

260260
# Only constrain within tests/integration to avoid ignoring unrelated tests
261261
integration_root = (Path(str(config.rootpath)) / "tests" / "integration").resolve()

0 commit comments

Comments
 (0)