From a7c6cf9604219b9b363dda1dae9043688a72fa9d Mon Sep 17 00:00:00 2001 From: Keno Fischer Date: Mon, 13 Apr 2020 19:25:53 -0400 Subject: [PATCH] Include stdlibs in --revise Without this changes in the stdlibs weren't picked up. --- test/runtests.jl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/runtests.jl b/test/runtests.jl index 2d1d36e191506..68a6e526194a7 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -87,6 +87,11 @@ cd(@__DIR__) do @everywhere begin Revise.track(Core.Compiler) Revise.track(Base) + for (id, mod) in Base.loaded_modules + if id.name in STDLIBS + Revise.track(mod) + end + end Revise.revise() end end