You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Watch does not seem to work with files outside of vscode directory. In C / C++, it's common to build projects outside of the workspace to keep the workspace clean and avoid bleeding over the codebase. However when you generate a build there, the watcher does not seem to pick up changes.
Note the initial parsing actually works fine, but it does not refresh.
To Reproduce
Steps to reproduce the behaviour:
Run VS Code Dev Container
Fire up coverage with coverage-gutters.manualCoverageFilePaths: [ "/path/to/filesystem/lcov.info" ]
Click on watch
Modify the filesystem file
Expected behaviour
Updated file should be refreshed.
Desktop (please complete the following information):
Then watch doesn't work either. Again, initial search might work but watch doesn't, it finds {/workspaces/project-dir}//{lcov.info}
Now I don't know about the GlobPattern in use here from the vscode libs, but if that was a bash glob, that would expand out to literal curly braces unless there was more than one element listed.
The text was updated successfully, but these errors were encountered:
I'm experiencing the same issue. My organization uses Bazel, which produces a coverage report within the Bazel cache and is thus kept out of the repository, but is accessible via a symlink from the root of the repository of bazel-out. Manually rerunning the Coverage Gutters: Display Coverage command works, but using the Coverage Gutters: Watch command does not.
From some limited testing it seems that it simply doesn't detect when the file is modified and thus doesn't reload the coverage data.
Describe the bug
Watch does not seem to work with files outside of vscode directory. In C / C++, it's common to build projects outside of the workspace to keep the workspace clean and avoid bleeding over the codebase. However when you generate a build there, the watcher does not seem to pick up changes.
Note the initial parsing actually works fine, but it does not refresh.
To Reproduce
Steps to reproduce the behaviour:
Expected behaviour
Updated file should be refreshed.
Desktop (please complete the following information):
Additional context
There generally seems to be some funnies in this area. I'm not a JS guy, but I also noticed that if I run with
Then watch doesn't work either. Again, initial search might work but watch doesn't, it finds
{/workspaces/project-dir}//{lcov.info}
Now I don't know about the GlobPattern in use here from the vscode libs, but if that was a bash glob, that would expand out to literal curly braces unless there was more than one element listed.
The text was updated successfully, but these errors were encountered: