Skip to content

Commit 99511eb

Browse files
authored
Merge pull request #428 from JuliaRobotics/test/20Q2/skipCGDFGenv
SKIP_CGDFG_TESTS env var
2 parents a7ff1b6 + 35c0393 commit 99511eb

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.travis.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,17 @@ branches:
2222
- master
2323
- develop
2424
- /^release-.*$/
25-
25+
2626
jobs:
2727
include:
2828
- julia: 1.4
29-
env: IIF_TEST=true
29+
env:
30+
- IIF_TEST=true
31+
- SKIP_CGDFG_TESTS=true
3032
if: NOT branch =~ ^release.*$
3133
- arch: arm64
34+
env: SKIP_CGDFG_TESTS=true
35+
before_script:
3236
- stage: "Documentation"
3337
julia: 1.4
3438
os: linux

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ for api in apis
4040
end
4141
end
4242

43-
if get(ENV, "IIF_TEST", "") != "true"
43+
if get(ENV, "SKIP_CGDFG_TESTS", "") != "true"
4444
@testset "Consolidation WIP Testing Driver: CloudGraphsDFG" begin
4545
global decodePackedType
4646
function decodePackedType(dfg::AbstractDFG, packeddata::GenericFunctionNodeData{PT,<:AbstractString}) where PT

0 commit comments

Comments
 (0)