mirror of
https://github.com/codeflash-ai/codeflash-agent.git
synced 2026-05-04 18:25:19 +00:00
Add codeflash-api to workspace dev dependencies
The package was a workspace member but not listed in the root dev group, so its tests couldn't import codeflash_api when running from the monorepo root.
This commit is contained in:
parent
e3e74c3f2e
commit
bf8707695f
2 changed files with 4 additions and 0 deletions
|
|
@ -8,6 +8,7 @@ members = ["packages/*", "reports/*"]
|
|||
|
||||
[dependency-groups]
|
||||
dev = [
|
||||
"codeflash-api",
|
||||
"codeflash-core",
|
||||
"codeflash-python",
|
||||
"codeflash-service",
|
||||
|
|
@ -39,6 +40,7 @@ test-optional = [
|
|||
]
|
||||
|
||||
[tool.uv.sources]
|
||||
codeflash-api = { workspace = true }
|
||||
codeflash-core = { workspace = true }
|
||||
codeflash-python = { workspace = true }
|
||||
codeflash-service = { workspace = true }
|
||||
|
|
|
|||
2
uv.lock
2
uv.lock
|
|
@ -686,6 +686,7 @@ source = { virtual = "." }
|
|||
[package.dev-dependencies]
|
||||
dev = [
|
||||
{ name = "black" },
|
||||
{ name = "codeflash-api" },
|
||||
{ name = "codeflash-core" },
|
||||
{ name = "codeflash-python" },
|
||||
{ name = "codeflash-service" },
|
||||
|
|
@ -720,6 +721,7 @@ test-optional = [
|
|||
[package.metadata.requires-dev]
|
||||
dev = [
|
||||
{ name = "black", specifier = ">=25.1" },
|
||||
{ name = "codeflash-api", editable = "packages/codeflash-api" },
|
||||
{ name = "codeflash-core", editable = "packages/codeflash-core" },
|
||||
{ name = "codeflash-python", editable = "packages/codeflash-python" },
|
||||
{ name = "codeflash-service", editable = "packages/github-app" },
|
||||
|
|
|
|||
Loading…
Reference in a new issue