Skip to content

Commit

Permalink
skip Interact.jl test for now
Browse files Browse the repository at this point in the history
  • Loading branch information
rdeits committed May 24, 2020
1 parent bd1a497 commit d1f35c3
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,17 @@ vis = Visualizer()
for file in readdir(dir)
base, ext = splitext(file)
if ext == ".jl"
println("Running $file")
include(joinpath(dir, file))
if file == "manipulation_with_blink.jl"
# The interaction between MeshCat and Interact
# causes weird task deadlocks that I don't want
# to deal with right now.
@warn "Skipping $file"
else
@info "Running $file"
include(joinpath(dir, file))
end
elseif ext == ".ipynb"
println("Running notebook $file")
@info "Running notebook $file"
@nbinclude(joinpath(dir, file))
end
end
Expand Down

0 comments on commit d1f35c3

Please sign in to comment.