Skip to content

Commit bcd537d

Browse files
committed
option skip CGDFG test on IIF_TEST
1 parent d6d1885 commit bcd537d

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+
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)