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 7bf3d1e commit aca9819Copy full SHA for aca9819
test/runtests.jl
@@ -497,7 +497,9 @@ include("test_pipesyntax.jl")
497
include("test_macros.jl")
498
499
# Only run doctests on 64, all the output checks get messed up with
500
-# Int32 otherwise
501
-Int==Int64 && doctest(Query)
+# Int32 otherwise. Also only run on Julia 1.6 and newer, because
+# a lot of output printing was changed and doctests now can't be written
502
+# to work on multiple Julia versions.
503
+Int==Int64 && VERSION>=v"1.6" && doctest(Query)
504
505
end
0 commit comments