Skip to content

Commit

Permalink
got if right and added disabled warning
Browse files Browse the repository at this point in the history
  • Loading branch information
zsunberg committed Nov 1, 2018
1 parent b991174 commit ea6111d
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,14 @@ end


is_ci = get(ENV, "CI", "false") == "true"
is_travis_ci = get(ENV, "TRAVIS", "false") == "true"
is_travis = get(ENV, "TRAVIS", "false") == "true"

if is_ci && !is_travis_ci
@show is_ci
@show is_travis

@warn("Notebook smoke testing is disabled on JuliaCI. We should re-enable it asap")

if !is_ci || is_travis
@testset "data series" begin
cd("../notebooks") do
@nbinclude("../notebooks/Filtering-a-Trajectory-or-Data-Series.ipynb")
Expand Down

0 comments on commit ea6111d

Please sign in to comment.