Skip to content

Commit be719fa

Browse files
committed
Don't run end-end on travis (Testing "TRAVIS" env variable)
1 parent f6c683c commit be719fa

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

test/runtests.jl

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,12 @@ for api in apis
1212
end
1313
end
1414

15-
@testset "HexagonalLightGraphs" begin
16-
include("HexagonalLightGraphs.jl")
15+
if !(get(ENV, "TRAVIS", "") == "true")
16+
@testset "Local Testsets" begin
17+
@testset "HexagonalLightGraphs" begin
18+
include("HexagonalLightGraphs.jl")
19+
end
20+
end
1721
end
1822

1923
# Test other interfaces that are not yet compatible for the general tests.

0 commit comments

Comments
 (0)