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 68a7948 commit 117315eCopy full SHA for 117315e
test/benchmark_solves.jl
@@ -1,5 +1,7 @@
1
-# TEST_TIME = true
2
TEST_TIME = false
+if !isdefined(Main,:TEST_TIME)
3
+ TEST_TIME = true
4
+end
5
6
# Double Integrator
7
solver = ALTROSolver(Problems.DoubleIntegrator()...)
test/runtests.jl
@@ -22,6 +22,8 @@ end
22
23
@testset "Full Solves" begin
24
include("car_tests.jl")
25
+ TEST_TIME = false # don't test timing results
26
+ include("benchmark_solves.jl")
27
end
28
29
@testset "Solvers" begin
0 commit comments