Skip to content

Commit 9600b26

Browse files
committed
test: run lux tests only on linux for now
1 parent 6abff33 commit 9600b26

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/runtests.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ end
5252
@testset "Neural Networks" begin
5353
@safetestset "NNlib Primitives" include("nn/nnlib.jl")
5454
@safetestset "Flux.jl Integration" include("nn/flux.jl")
55-
@safetestset "LuxLib Primitives" include("nn/luxlib.jl")
56-
@safetestset "Lux Integration" include("nn/lux.jl")
55+
if Sys.islinux()
56+
@safetestset "LuxLib Primitives" include("nn/luxlib.jl")
57+
@safetestset "Lux Integration" include("nn/lux.jl")
58+
end
5759
end
5860
end

0 commit comments

Comments
 (0)