Closed logankilpatrick closed 4 years ago
This is almost always indicative of a syntax error in your package. What is the package that you are testing? I can take a look.
It's a private Package sadly, but I'm guessing it's from one of the files in my archive folder. Is there a way to add a ignore to certain files?
Not yet. See https://github.com/JuliaCI/CoverageTools.jl/issues/33
Can you fix the syntax error in the file? It looks like src/archive/model.jl
is probably the culprit. You don't have to get the file running. You just need to fix the syntax error. Looks like maybe a missing comma.
The other option is to rename the file from src/archive/model.jl
to src/archive/model.jl.ignore
or something like that.
Fixed all those syntax errors and it works like a charm!
Hey all, I am getting this error on Travis:
Has anyone seen this or know what do do? My coverage tests pass locally when I run
Pkg.test("MyPkg", coverage=true)