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 c5f6145 commit ebb1be0Copy full SHA for ebb1be0
test/runtests.jl
@@ -15,14 +15,19 @@ include("test_state_estim.jl")
15
include("test_predictive_control.jl")
16
include("test_plot_sim.jl")
17
18
+old_debug_level = ENV["JULIA_DEBUG"]
19
DocMeta.setdocmeta!(
20
ModelPredictiveControl,
21
:DocTestSetup,
- :(using ModelPredictiveControl, ControlSystemsBase);
22
+ :(
23
+ using ModelPredictiveControl, ControlSystemsBase;
24
+ ENV["JULIA_DEBUG"] = ""; # temporarily disable @debug logging for the doctests
25
+ );
26
recursive=true,
27
warn=false
28
)
29
doctest(ModelPredictiveControl, testset="DocTest")
30
+ENV["JULIA_DEBUG"] = old_debug_level
31
32
end;
33
0 commit comments