From 1e4eb40f46339aacbcdda63153afbc3e9e994a00 Mon Sep 17 00:00:00 2001 From: Takafumi Arakaki Date: Fri, 24 Dec 2021 00:57:22 -0500 Subject: [PATCH 1/2] Revert "Try another workaround" This reverts commit 055fbf3e6fe4ffe9935ad8d386426956b9c92fd5. --- test/runtests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index 2c8b2fb304..f79440dab5 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -6,7 +6,6 @@ using Distributed: addprocs, nworkers using Test if get(ENV, "CI", "false") == "true" - VERSION < v"1.8-" && # workaround the hang in CI addprocs(3) # Tests in `PerformanceTestTools.@include_foreach` might cause @@ -14,6 +13,7 @@ if get(ENV, "CI", "false") == "true" # at the same time. This can happen when the tests are run via # `Pkg.test`. Doing this after `addprocs` to workaround a quirk # in Distributed.jl. + VERSION < v"1.8-" && # workaround the hang in CI LoadAllPackages.loadall() end @info "Testing with:" nworkers() From ca21919d184374745ffe235144282a203eb0036b Mon Sep 17 00:00:00 2001 From: Takafumi Arakaki Date: Fri, 24 Dec 2021 00:57:33 -0500 Subject: [PATCH 2/2] Revert "Workaround hang with 1.8-DEV" This reverts commit 978c7a242fb4aec78f4e17ee9943fb45d8b66dce. --- test/runtests.jl | 1 - 1 file changed, 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index f79440dab5..4dbccb1a29 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -13,7 +13,6 @@ if get(ENV, "CI", "false") == "true" # at the same time. This can happen when the tests are run via # `Pkg.test`. Doing this after `addprocs` to workaround a quirk # in Distributed.jl. - VERSION < v"1.8-" && # workaround the hang in CI LoadAllPackages.loadall() end @info "Testing with:" nworkers()