Skip to content

Commit 5e9f8b7

Browse files
authored
Merge pull request #615 from JuliaRobotics/hotfix/3Q20/skipcgdfgtest
option to skip CGDFG on IIF_TEST
2 parents d6d1885 + 3650a48 commit 5e9f8b7

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

test/runtests.jl

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,10 @@ if get(ENV, "IIF_TEST", "") == "true"
8686

8787
using IncrementalInference
8888

89-
apis = [
90-
# GraphsDFG{SolverParams}(),
91-
LightDFG(solverParams=SolverParams(), userId="testUserId"),
92-
CloudGraphsDFG(solverParams=SolverParams(), userId="testUserId")
93-
]
89+
apis = [LightDFG(solverParams=SolverParams(), userId="testUserId")]
90+
haskey(ENV, "SKIP_CGDFG_TESTS") && ENV["SKIP_CGDFG_TESTS"] != "true" ? push!(apis, CloudGraphsDFG(solverParams=SolverParams(), userId="testUserId") ) : nothing
91+
# GraphsDFG{SolverParams}()
92+
9493
for api in apis
9594
@testset "Testing Driver: $(typeof(api))" begin
9695
@info "Testing Driver: $(api)"

0 commit comments

Comments
 (0)