[julia-users] Testing uncommitted changes to a package

2016-10-21 Thread Steven G. Johnson
Just include your runtests.jl script.

Re: [julia-users] Testing uncommitted changes to a package

2016-10-21 Thread Michele Zaffalon
And that command would be push!(LOAD_PATH, $PWD/src) On Fri, Oct 21, 2016 at 5:36 PM, Yichao Yu wrote: > Add $PWD/src to LOAD_PATH instead. This way you can also make sure you are > not using Pkg incorrectly in your package. > > > On Fri, Oct 21, 2016 at 11:11 AM, Chandrakant G < > chandrakant.g

Re: [julia-users] Testing uncommitted changes to a package

2016-10-21 Thread Yichao Yu
Add $PWD/src to LOAD_PATH instead. This way you can also make sure you are not using Pkg incorrectly in your package. On Fri, Oct 21, 2016 at 11:11 AM, Chandrakant G < chandrakant.gopa...@gmail.com> wrote: > Hi guys, > I am getting my feet wet with Julia and its pretty nice so far. > I am testing

[julia-users] Testing uncommitted changes to a package

2016-10-21 Thread Chandrakant G
Hi guys, I am getting my feet wet with Julia and its pretty nice so far. I am testing an external Julia package (not something I wrote). I have already cloned it and made some changes. I have started the julia repl inside the directory where i cloned the package repo. Here's my workflow. # Remo