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
generate_coverage writes out files in both the package src directory as well as the julia installation directory (in /share/julia/base). Running clean_coverage removes the *.cov files from the package, but not from the julia base directory.
The text was updated successfully, but these errors were encountered:
In case it helps others, this can also be achieved with the Unix find command. To list the coverage files recursively, starting from the current directory, one can use
find . -name "*.cov"
To remove all of the coverage files, the find command accepts an additional -delete option:
generate_coverage
writes out files in both the packagesrc
directory as well as the julia installation directory (in/share/julia/base
). Runningclean_coverage
removes the*.cov
files from the package, but not from the julia base directory.The text was updated successfully, but these errors were encountered: