-
Notifications
You must be signed in to change notification settings - Fork 11
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
TestReports.test()
fails to act as Pkg.test()
on julia 1.8.0
#91
Comments
Because In CI I think the best way to do this is to not have
Locally, I would have
I think there is a mistake here - It shouldn't say the the first Also, I'm not sure these checks are working properly after looking at them just now! |
On branch
But |
Is it possible to share your package |
Sorry for the long delay. I cannot share the full
EDIT : Bluntly removing |
Thanks for this, I'll add |
Perhaps this is an issue with the global environment, is the version of |
Hi, I just checked the Note that the test run now fails with
|
I'm currently trying to generate unit test reports for CI.
This means replacing occurrences of
Pkg.test()
withTestReports.test()
as advertised in https://juliatesting.github.io/TestReports.jl/stable/manual/#Testing-Packages.However, when using a
test/runtests.jl
test script along with a dedicatedProject.toml
andManifest.toml
containingTestReports
as a dependency, there are some issues I do not understand so far.(<MyPackage>) pkg>test
will lauch the test suite from my package's environment, I can"t figure how to do the same forTestReports.test()
TestReports
to my package's dependencies (which does not seem a julia thing to do I guess) doingusing TestReports; TestReports.test()
succeedsTestReports
to my package'stest
environment, doingTestReports.test("MyPackage")
fails due to the package not being installed (which seems totally normal).using TestReports
in my global environment then activate my package's environment and doTestReports.test()
I get the following messageTo sum this up, is there a way to use
TestReports
without depending on it directly ?The text was updated successfully, but these errors were encountered: