We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a26f8fa commit d4a4edcCopy full SHA for d4a4edc
test/test_examples_tutorial_parallel.jl
@@ -1,5 +1,10 @@
1
module TestExamplesTutorialParallel
2
3
-include("../examples/tutorial_parallel.jl")
+# 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
9
10
end # module
0 commit comments