From 322fd706a1739daf4776fd050df756e6670ba958 Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Wed, 13 Apr 2022 00:54:00 -0400 Subject: [PATCH] Temporarily move the `REPL` test suite to node 1, to buy us time until we fix the underlying bugs (#44961) --- test/runtests.jl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/runtests.jl b/test/runtests.jl index 4c9ac1cfd869c..6a793c57ce33f 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -78,6 +78,11 @@ move_to_node1("Distributed") # Ensure things like consuming all kernel pipe memory doesn't interfere with other tests move_to_node1("stress") +# TODO: remove `REPL` from the "move to node 1" tests. +# We first need to fix the underlying bugs that are causing the `REPL` tests to frequently +# fail on the `test x86_64-apple-darwin` tester on Buildkite. +move_to_node1("REPL") + # In a constrained memory environment, run the "distributed" test after all other tests # since it starts a lot of workers and can easily exceed the maximum memory limited_worker_rss && move_to_node1("Distributed")