I'm having issues getting coverage to work. Here's what I'm doing: 1. From my package directory I run this:
$ julia --code-coverage --inline=no test/runtests.jl This results in *.cov files for all files that are run. 2. Run julia, then: julia> using Coverage julia> coverage_folder() This prints out a list of files in my src folder. All files that have *.cov associated with them also show "Skipped file_name". Looking closer at the *.cov files, I see that all lines that *I know* are run have a 0 next to them, even if they are run several several times in the tests. Lines that have no coverage are still at `-`. Any idea why? I'm kind of baffled on this. The package in question: https://github.com/JuliaControl/Control.jl
