We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 084e92f commit 1b5e411Copy full SHA for 1b5e411
integration/vscode/ada/test/utils.ts
@@ -319,8 +319,12 @@ export function isGNATTestTask(t: vscode.Task): boolean {
319
return t.name.toLowerCase().includes('gnattest');
320
}
321
322
+function isGNATcovTask(t: vscode.Task): boolean {
323
+ return t.name.toLowerCase().includes('gnatcov');
324
+}
325
+
326
/**
327
* Utility filter for selecting core tasks that are not related to other tools
328
* such as GNAT SAS or GNATtest.
329
*/
-export const isCoreTask = and(negate(isGNATSASTask), negate(isGNATTestTask));
330
+export const isCoreTask = and(negate(isGNATSASTask), negate(isGNATTestTask), negate(isGNATcovTask));
0 commit comments