Skip to content

Commit

Permalink
Merge 6f5e378 into 3fcf075
Browse files Browse the repository at this point in the history
  • Loading branch information
tkf committed Sep 8, 2020
2 parents 3fcf075 + 6f5e378 commit 982c2bc
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion test/runtests.jl
Expand Up @@ -3,7 +3,16 @@ using Test

@testset "$file" for file in sort([file for file in readdir(@__DIR__) if
match(r"^test_.*\.jl$", file) !== nothing])
file == "test_doctest.jl" && VERSION < v"1.2" && continue
if file == "test_doctest.jl"
if lowercase(get(ENV, "JULIA_PKGEVAL", "false")) == "true"
@info "Skipping doctests on PkgEval."
continue
elseif VERSION < v"1.2"
@info "Skipping doctests on Julia $VERSION."
continue
end
end

include(file)
end

Expand Down

0 comments on commit 982c2bc

Please sign in to comment.