-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to use this tool with Pkg.test()
rather than julia runtests.jl
?
#9
Comments
Interesting... the core of the issue is that this code |
JuliaLang/julia#6191 by @burrowsa added this feature |
Closed by JuliaLang/julia#7615 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In an attempt to configure the soon-to-be released Contour package to be correctly handled by
Pkg
, I've added a couple ofREQUIRE
files to the repo: JuliaGeometry/Contour.jl#6However, since installation of testing dependencies rely on using
Pkg.test("Contour")
to run the test suite, I can't just dojulia --code-coverage test/runtests.jl
as before to run the tests - on the other hand,julia --code-coverage -e 'Pkg.test("Contour")
doesn't seem to generate any coverage files in the folder where I execute it (at least not on my local machine).Is there a way to somehow tell
Pkg.test()
that I want coverage analysis - or, if not, then maybe to tell it that "I'm about to run the tests manually, could you please resolve testing dependencies"?Ping @StefanKarpinski
The text was updated successfully, but these errors were encountered: