diff --git a/lib/workers/repository/update/branch/get-updated.ts b/lib/workers/repository/update/branch/get-updated.ts index e3dbf85f7767010e1828e4802d68cbb1642e500c..b036b178d9a6215d4d3d98b956e1c4ac78753992 100644 --- a/lib/workers/repository/update/branch/get-updated.ts +++ b/lib/workers/repository/update/branch/get-updated.ts @@ -288,6 +288,10 @@ export async function getUpdatedPackageFiles( })); const updatedArtifacts: FileChange[] = []; const artifactErrors: ArtifactError[] = []; + // istanbul ignore if + if (is.nonEmptyArray(updatedPackageFiles)) { + logger.debug('updateArtifacts for updatedPackageFiles'); + } for (const packageFile of updatedPackageFiles) { const updatedDeps = packageFileUpdatedDeps[packageFile.path]; const managers = packageFileManagers[packageFile.path]; @@ -311,6 +315,10 @@ export async function getUpdatedPackageFiles( path: name, contents: nonUpdatedFileContents[name], })); + // istanbul ignore if + if (is.nonEmptyArray(nonUpdatedPackageFiles)) { + logger.debug('updateArtifacts for nonUpdatedPackageFiles'); + } for (const packageFile of nonUpdatedPackageFiles) { const updatedDeps = packageFileUpdatedDeps[packageFile.path]; const managers = packageFileManagers[packageFile.path]; @@ -332,6 +340,10 @@ export async function getUpdatedPackageFiles( } if (!reuseExistingBranch) { // Only perform lock file maintenance if it's a fresh commit + // istanbul ignore if + if (is.nonEmptyArray(lockFileMaintenanceFiles)) { + logger.debug('updateArtifacts for lockFileMaintenanceFiles'); + } for (const packageFileName of lockFileMaintenanceFiles) { const managers = packageFileManagers[packageFileName]; if (is.nonEmptySet(managers)) {