vscode-koverage
vscode-koverage copied to clipboard
VSCode code coverage extension
Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.15.3 to 1.15.6. Commits 35a517c Release version 1.15.6 of the npm package. c4f847f Drop Proxy-Authorization across hosts. 8526b4a Use GitHub for disclosure. b1677ce Release version 1.15.5 of...
the .code-workspace I use looks like ```jsonc "folders": [ { "path": "../src" }, { "path": "../cnf", "name": "config- files" }, { "path": "../sql", "name": "SQL" }, ``` Checking the koverage...
sadly vscode doesn't do this when querying the settings, so each extension has to do that on its own (https://github.com/microsoft/vscode/issues/2809) Please resolve `${config:name}` when reading file/folder names like `koverage.coverageFilePaths`. In...
Bumps [ip](https://github.com/indutny/node-ip) from 2.0.0 to 2.0.1. Commits 3b0994a 2.0.1 32f468f lib: fixed CVE-2023-42282 and added unit test See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any...
In VSCode with the most recent version of Koverage the file tree for coverage is rendering each file separately, instead of using a tree structure. For example instead of |...
I noticed that clover xml is not well read (I only have one example for now). The field that holds the file is filled only with the file name without...
Dependency `@cvrg-report/jacoco-json` is prone to crash if a coverage report is lacking line, method, or branch counter. This will, in turn, prevent the extension from displaying coverage. More information in...
(which possibly is not always in the coverage data, but if it is that would be nice)
https://github.com/ryanluker/vscode-coverage-gutters seems to be quite active and taking PRs in, too; and in most cases people are interested in both the overview and the details, so they will often have...
I like the way this extension presents coverage data, and I'd like to integrate it into my GitLab automated build pipeline. - Is there a way to generate this report...