You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`[affected-tests] No affected package test tasks detected (${baseRef}..${headRef}). Skipping affected package tests.`,
44
54
);
45
55
process.exit(0);
46
56
}
47
57
58
+
if(excludedTargets.length>0){
59
+
console.log(
60
+
`[affected-tests] Skipping packages covered by dedicated CI workflows: ${excludedTargets.join(', ')}`,
61
+
);
62
+
}
63
+
48
64
console.log(
49
-
`[affected-tests] Running turbo test for ${combinedTargets.length} affected package(s) from ${testImpactRoots.length} impact root(s): ${combinedTargets.join(', ')}`,
65
+
`[affected-tests] Running turbo test for ${filteredTargets.length} affected package(s) from ${testImpactRoots.length} impact root(s): ${filteredTargets.join(', ')}`,
0 commit comments