Skip to content

Commit

Permalink
fix output in examples tests
Browse files Browse the repository at this point in the history
  • Loading branch information
chriscoey committed Apr 1, 2021
1 parent 3f95237 commit 355a749
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions test/runexamplestests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ script_verbose = false

# default options to solvers
default_options = (
# verbose = false,
verbose = true,
verbose = false,
# verbose = true,
default_tol_relax = 10,
# stepper = Solvers.CombinedStepper{Float64}(),
# stepper = Solvers.PredOrCentStepper{Float64}(),
Expand All @@ -27,7 +27,7 @@ instance_sets = [
("minimal", Float64, 60),
# ("minimal", Float32, 60),
# ("minimal", BigFloat, 60),
("fast", Float64, 60),
# ("fast", Float64, 60),
# ("slow", Float64, 120),
]

Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ println()
all_test_time = @elapsed for t in test_files
@info("starting $t tests")
test_time = @elapsed include("run$(t)tests.jl")
flush(stdout); flush(stderr)
@info("finished $t tests in $(@sprintf("%8.2e seconds", test_time))")
println()
flush(stdout); flush(stderr)
end
@info("finished all tests in $(@sprintf("%8.2e seconds", all_test_time))")
end
Expand Down

0 comments on commit 355a749

Please sign in to comment.