Skip to content

Commit

Permalink
Merge pull request OCamlPro#10 from nberth/coverage-not-by-default
Browse files Browse the repository at this point in the history
Disable handling of code coverage by default
  • Loading branch information
nberth authored Jul 26, 2024
2 parents a2e56ef + 2fec4e8 commit 12fcf1e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
"coverage": {
"type": "boolean",
"description": "Enable code coverage",
"default": true
"default": false
},
"verbose": {
"type": "boolean",
Expand Down Expand Up @@ -193,7 +193,7 @@
"arguments": "",
"cwd": "$${_:{workspaceRoot}}",
"group": [],
"coverage": true,
"coverage": false,
"verbose": false,
"gdbtty": true
}
Expand Down
4 changes: 2 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class GdbConfigurationProvider implements vscode.DebugConfigurationProvider {
config.env.LD_LIBRARY_PATH = config.libcobpath + ";" + config.env.LD_LIBRARY_PATH;
}
if (config.coverage === undefined) {
config.coverage = true;
config.coverage = false;
}
if (config.gdbtty === undefined) {
config.gdbtty = true;
Expand All @@ -92,7 +92,7 @@ class GdbConfigurationProvider implements vscode.DebugConfigurationProvider {
arguments: "",
cwd: "${workspaceFolder}",
group: [],
coverage: true,
coverage: false,
verbose: false,
gdbtty: true
};
Expand Down

0 comments on commit 12fcf1e

Please sign in to comment.