From fd501e6967161a7818c917a86334016242a3c7ec Mon Sep 17 00:00:00 2001 From: Bas Schoenmaeckers Date: Wed, 27 Nov 2024 16:44:29 +0100 Subject: [PATCH] Ignore coverage for non-existent source type --- lib/modules/manager/pep621/processors/uv.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/modules/manager/pep621/processors/uv.ts b/lib/modules/manager/pep621/processors/uv.ts index 87b96ee5a8578f..0e2a128d905526 100644 --- a/lib/modules/manager/pep621/processors/uv.ts +++ b/lib/modules/manager/pep621/processors/uv.ts @@ -64,6 +64,7 @@ export class UvProcessor implements PyProjectProcessor { if (depSource) { // Dependency is pinned to a specific source. dep.depType = depTypes.uvSources; + /* istanbul ignore else */ if ('index' in depSource) { const index = uv.index?.find( ({ name }) => name === depSource.index,