Skip to content

Commit 1b5e411

Browse files
committed
Exclude GNATcoverage task from core extension testing
1 parent 084e92f commit 1b5e411

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

integration/vscode/ada/test/utils.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,8 +319,12 @@ export function isGNATTestTask(t: vscode.Task): boolean {
319319
return t.name.toLowerCase().includes('gnattest');
320320
}
321321

322+
function isGNATcovTask(t: vscode.Task): boolean {
323+
return t.name.toLowerCase().includes('gnatcov');
324+
}
325+
322326
/**
323327
* Utility filter for selecting core tasks that are not related to other tools
324328
* such as GNAT SAS or GNATtest.
325329
*/
326-
export const isCoreTask = and(negate(isGNATSASTask), negate(isGNATTestTask));
330+
export const isCoreTask = and(negate(isGNATSASTask), negate(isGNATTestTask), negate(isGNATcovTask));

0 commit comments

Comments
 (0)