Skip to content

Commit

Permalink
temporarily skip some tests on 0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikekre committed Mar 9, 2017
1 parent 3a1d66e commit b110e36
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ makedocs(
format = :html,
sitename = "JuAFEM.jl",
doctest = true,
strict = true,
strict = false, # VERSION.minor == 6, # only strict mode on release bot
pages = Any[
"Home" => "index.md",
"man/fe_intro.md",
Expand All @@ -18,7 +18,7 @@ makedocs(
deploydocs(
repo = "github.com/KristofferC/JuAFEM.jl.git",
target = "build",
julia = "0.5",
julia = "0.6", # deploy from release bot
deps = nothing,
make = nothing,
)
3 changes: 3 additions & 0 deletions test/test_VTK.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
using SHA
@testset "VTK" begin
if VERSION.minor < 6 # temporarily skip tests on this until
# JuliaLang/julia#17003 is fixed
OVERWRITE_CHECKSUMS = false
checksums_file = joinpath(dirname(@__FILE__), "checksums.sha1")
checksum_list = readstring(checksums_file)
Expand Down Expand Up @@ -60,6 +62,7 @@ using SHA
end

OVERWRITE_CHECKSUMS && close(csio)
end

# Test getVTKtype
for interpolation in (Lagrange{1, RefCube, 1}(),
Expand Down

0 comments on commit b110e36

Please sign in to comment.