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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The reason will be displayed to describe this comment to others. Learn more.
What happens is that it can't find the joinpath(JULIA_HOME, "../../test") on Travis because it doesn't have the "normal" structure, I guess. So the include(joinpath(test_dir, "choosetests.jl")) fails.
55c2c61
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm a bit curious which of them fail if you don't do this
55c2c61
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What happens is that it can't find the
joinpath(JULIA_HOME, "../../test")
on Travis because it doesn't have the "normal" structure, I guess. So theinclude(joinpath(test_dir, "choosetests.jl"))
fails.55c2c61
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not just travis, any binary install will have a different structure. there are variables for this, DATAROOTDIR I think
55c2c61
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On my laptop, running in my top-level
julia
dir (where I cloned julia), I get thatBase.DATAROOTDIR
is../share
which doesn't exist?55c2c61
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, because I need
JULIA_HOME
in front.