chore: (typos) Clarify Changelog
This commit is contained in:
parent
00d2f19d5f
commit
f4fe9fdabd
|
|
@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||
|
||||
- Langfuse tracing to have readable waterfalls
|
||||
- Alembic Migrations to match models.py
|
||||
- message_in_seq report in webhook
|
||||
- message_in_seq correctly included in webhook payload
|
||||
|
||||
### Changed
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,8 @@ Welcome to the Honcho changelog! This section documents all notable changes to t
|
|||
|
||||
- Langfuse tracing to have readable waterfalls
|
||||
- Alembic Migrations to match models.py
|
||||
- message_in_seq report in webhook
|
||||
- message_in_seq correctly included in webhook payload
|
||||
|
||||
|
||||
### Changed
|
||||
|
||||
|
|
|
|||
|
|
@ -85,6 +85,15 @@ addopts = "--strict-markers --cov=src/ --cov=sdks/python/src/honcho --cov-report
|
|||
testpaths = ["tests"]
|
||||
pythonpath = ["src"]
|
||||
|
||||
[tool.coverage.report]
|
||||
exclude_lines = [
|
||||
"pragma: no cover",
|
||||
"def __repr__",
|
||||
"raise AssertionError",
|
||||
"raise NotImplementedError",
|
||||
"if __name__ == .__main__.:",
|
||||
"if TYPE_CHECKING:",
|
||||
]
|
||||
|
||||
[tool.basedpyright]
|
||||
# BasedPyright currently seems like the best type checker option, much faster
|
||||
|
|
|
|||
Loading…
Reference in New Issue