Skip to content

Commit 7089d9d

Browse files
committed
Ensure Travis stays awake during long test runs
1 parent 144dc00 commit 7089d9d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/runtests.jl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,14 @@ ambs = detect_ambiguities(StaticArrays, WoodburyMatrices, Base, Core)
1010
using Interpolations
1111
@test isempty(setdiff(detect_ambiguities(Interpolations, Base, Core), ambs))
1212

13+
const isci = get(ENV, "CI", "") in ("true", "True")
14+
1315
@testset "Interpolations" begin
1416
include("core.jl")
1517

1618
# b-spline interpolation tests
1719
include("b-splines/runtests.jl")
20+
isci && println("finished b-spline")
1821
include("nointerp.jl")
1922
# extrapolation tests
2023
include("extrapolation/runtests.jl")
@@ -24,8 +27,10 @@ using Interpolations
2427

2528
# test gradient evaluation
2629
include("gradient.jl")
30+
isci && println("finished gradient")
2731
# test hessian evaluation
2832
include("hessian.jl")
33+
isci && println("finished hessian")
2934

3035
# gridded interpolation tests
3136
include("gridded/runtests.jl")

0 commit comments

Comments
 (0)