Skip to content

Commit 27af5aa

Browse files
committed
Remove linux from editor test for now
1 parent e284600 commit 27af5aa

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

test/runtests.jl

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@ include(joinpath(PROFILINGTESTDIR, "Platformer", "src", "Platformer.jl"))
1919
cd(joinpath(SMOKETESTDIR, "src"))
2020
@test run(SMOKETESTDIR, Test) == 0
2121

22-
cd(joinpath(ROOTDIR, "src", "editor", "JulGameEditor", "src"))
23-
include(joinpath(ROOTDIR, "src", "editor", "JulGameEditor", "src", "../Editor.jl"))
24-
@testset "Editor" begin
25-
@test Editor.run(true) == 0
22+
if !Sys.islinux()
23+
cd(joinpath(ROOTDIR, "src", "editor", "JulGameEditor", "src"))
24+
include(joinpath(ROOTDIR, "src", "editor", "JulGameEditor", "src", "../Editor.jl"))
25+
@testset "Editor" begin
26+
@test Editor.run(true) == 0
27+
end
2628
end
2729
end

0 commit comments

Comments
 (0)