diff --git a/CHANGELOG.md b/CHANGELOG.md index 43a9aa8b..934e8b4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -87,4 +87,3 @@ ### Other - fix(scheduler) Make schedule changes take effect immediately by @markstory in [#590](https://github.com/getsentry/taskbroker/pull/590) - diff --git a/clients/python/pyproject.toml b/clients/python/pyproject.toml index 8c577338..f46ddadf 100644 --- a/clients/python/pyproject.toml +++ b/clients/python/pyproject.toml @@ -64,3 +64,4 @@ target-version = ['py311'] profile = "black" line_length = 100 lines_between_sections = 1 +src_paths = ["src", "../../integration_tests"] diff --git a/integration_tests/pyproject.toml b/integration_tests/pyproject.toml index b927ee77..12328dd4 100644 --- a/integration_tests/pyproject.toml +++ b/integration_tests/pyproject.toml @@ -69,3 +69,4 @@ target-version = ['py311'] profile = "black" line_length = 100 lines_between_sections = 1 +src_paths = [".", "../clients/python/src"] diff --git a/pyproject.toml b/pyproject.toml index 8a839d4b..dc043e6f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -71,3 +71,4 @@ target-version = ['py311'] profile = "black" line_length = 100 lines_between_sections = 1 +src_paths = ["integration_tests", "clients/python/src"]