diff --git a/CHANGELOG.md b/CHANGELOG.md index 91a21646..68b7e316 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/docs/changelog/introduction.mdx b/docs/changelog/introduction.mdx index 0d40b17a..ff9946a5 100644 --- a/docs/changelog/introduction.mdx +++ b/docs/changelog/introduction.mdx @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 949a08f9..f39dcec5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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