From c3a91a80fea0b161177a316c4430384000ab66ed Mon Sep 17 00:00:00 2001 From: Deniz Yuret Date: Sat, 25 Aug 2018 21:20:23 +0300 Subject: [PATCH] added seed to runtests for travis --- test/runtests.jl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index 3afd650..7c54ccb 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,3 +1,5 @@ +#Uncomment this for better testing +using Random; Random.seed!(1) @time include("base.jl") #TODO include("broadcast.jl") @time include("cat.jl") @@ -9,7 +11,6 @@ @time include("math.jl") @time include("specialfunctions.jl") @time include("statistics.jl") - @time include("rosenbrock.jl") @time include("highorder.jl") @time include("neuralnet.jl")