From e30e9a0f38ce3981c727751263b11b886d00249a Mon Sep 17 00:00:00 2001 From: Ruben Romero Montes Date: Tue, 21 Apr 2026 17:12:54 +0200 Subject: [PATCH] ci: add pip exclusion for pyproject test fixtures The dependabot config only had a uv ecosystem exclusion for the pyproject/ test fixtures directory, not pip. Poetry-based fixtures without uv.lock were picked up by the pip scanner, causing PR #481. Co-Authored-By: Claude Opus 4.7 --- .github/dependabot.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2592f2bc..408fb5ce 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -52,6 +52,7 @@ updates: - package-ecosystem: "pip" directories: - "/test/providers/tst_manifests/pip/**" + - "/test/providers/tst_manifests/pyproject/**" schedule: interval: "monthly" labels: []