Skip to content

Commit d4a4edc

Browse files
committed
Don't test tutorial_parallel.jl with Julia < 1.2
1 parent a26f8fa commit d4a4edc

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
module TestExamplesTutorialParallel
22

3-
include("../examples/tutorial_parallel.jl")
3+
# It looks like `Channel` was not thread-safe before 1.2.
4+
# * https://travis-ci.com/tkf/Transducers.jl/jobs/270458293
5+
# * https://github.com/JuliaLang/julia/commit/961907977a57ae7b72ddb374e63341f3633a0f0a
6+
if VERSION >= v"1.2"
7+
include("../examples/tutorial_parallel.jl")
8+
end
49

510
end # module

0 commit comments

Comments
 (0)