From c7753736144ec6641b5c9a152f65f71976bb3bb2 Mon Sep 17 00:00:00 2001 From: Kevin Turcios <106575910+KRRT7@users.noreply.github.com> Date: Thu, 6 Mar 2025 12:30:31 +0000 Subject: [PATCH] chore: make codeflash config ignore-paths relative in langflow-base (#6938) make ignore-paths relative --- src/backend/base/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/base/pyproject.toml b/src/backend/base/pyproject.toml index cdcc006c1..67db45cfe 100644 --- a/src/backend/base/pyproject.toml +++ b/src/backend/base/pyproject.toml @@ -204,7 +204,7 @@ ignore = [ module-root = "langflow" tests-root = "../tests/unit" test-framework = "pytest" -ignore-paths = ["src/backend/base/langflow/components/"] +ignore-paths = ["langflow/components/"] formatter-cmds = ["ruff check --exit-zero --fix $file", "ruff format $file"] #disable plugins that might interfere with runtime measurement pytest-cmd = "pytest -p no:profiling -p no:sugar -p no:xdist -p no:cov -p no:split"