Skip to content

Commit a6dd839

Browse files
committed
chore: Update launch.json
1 parent 262b72b commit a6dd839

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

.vscode/launch.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@
1919
"runtimeExecutable": "${execPath}",
2020
"args": [
2121
"${workspaceFolder}/test/resources",
22-
"--install-extension",
23-
"ms-vscode.cpptools",
24-
"--disable-extensions",
22+
"--disable-extension=fortran-lang.linter-gfortran",
2523
"--extensionDevelopmentPath=${workspaceFolder}",
2624
"--extensionTestsPath=${workspaceFolder}/out/test"
2725
],

test/runTest.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,7 @@ async function main() {
1313
// Passed to --extensionTestsPath
1414
const extensionTestsPath = path.resolve(__dirname, './index');
1515

16-
const launchArgs = [
17-
workspacePath,
18-
'--disable-extensions',
19-
'--install-extension',
20-
'ms-vscode.cpptools',
21-
];
16+
const launchArgs = [workspacePath, '--disable-extensions'];
2217
// Download VS Code, unzip it and run the integration test
2318
await runTests({
2419
launchArgs,

0 commit comments

Comments
 (0)