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
I would like to add some tests to the Julia side of GAPJulia. The problem is that we need a path to an appropriate GAP executable to start GAP in Julia. So how can we add a portable test setup on the Julia side? Should we use environment variables?
The text was updated successfully, but these errors were encountered:
Well, how do you locally load LibGAP.jl into Julia? For my use, I have a shells script in LibGAP.jl, which starts julia and asks it to execute code like this:
So you could do something similar (and also in Travis), just add third command which runs the tests (e.g. by executing test/runtests.jl to follow the Pkg.jl conventions). That script could be generated by a ./configure script (we run ./configure GAPPATH for JuliaInterface and JuliaExperimental when building on Travis anyway, might as well add LibGAP.jl).
I would like to add some tests to the Julia side of
GAPJulia
. The problem is that we need a path to an appropriate GAP executable to start GAP in Julia. So how can we add a portable test setup on the Julia side? Should we use environment variables?The text was updated successfully, but these errors were encountered: