Skip to content
This repository was archived by the owner on Aug 14, 2025. It is now read-only.

Commit 5f31fa2

Browse files
committed
undo gratuitous changes to pyproject
1 parent e1386b5 commit 5f31fa2

File tree

2 files changed

+11
-15
lines changed

2 files changed

+11
-15
lines changed

.pre-commit-config.yaml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -55,20 +55,6 @@ repos:
5555
# - id: markdown-link-check
5656
# args: ['--quiet']
5757

58-
# - repo: local
59-
# hooks:
60-
# - id: distro-codegen
61-
# name: Distribution Template Codegen
62-
# additional_dependencies:
63-
# - rich
64-
# - pydantic
65-
# entry: python -m llama_stack.scripts.distro_codegen
66-
# language: python
67-
# pass_filenames: false
68-
# require_serial: true
69-
# files: ^llama_stack/templates/.*$
70-
# stages: [manual]
71-
7258
ci:
7359
autofix_commit_msg: 🎨 [pre-commit.ci] Auto format from pre-commit.com hooks
7460
autoupdate_commit_msg: ⬆ [pre-commit.ci] pre-commit autoupdate

pyproject.toml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Repository = "https://github.com/llamastack/llama-stack-client-python"
5555

5656

5757
[build-system]
58-
requires = ["hatchling", "hatch-fancy-pypi-readme"]
58+
requires = ["hatchling==1.26.3", "hatch-fancy-pypi-readme"]
5959
build-backend = "hatchling.build"
6060

6161
[tool.hatch.build]
@@ -92,6 +92,16 @@ path = "README.md"
9292
pattern = '\[(.+?)\]\(((?!https?://)\S+?)\)'
9393
replacement = '[\1](https://github.com/llamastack/llama-stack-client-python/tree/main/\g<2>)'
9494

95+
[tool.pytest.ini_options]
96+
testpaths = ["tests"]
97+
addopts = "--tb=short -n auto"
98+
xfail_strict = true
99+
asyncio_mode = "auto"
100+
asyncio_default_fixture_loop_scope = "session"
101+
filterwarnings = [
102+
"error"
103+
]
104+
95105
[tool.ruff]
96106
line-length = 120
97107
output-format = "grouped"

0 commit comments

Comments
 (0)