From 63c6c25ceb853f9ae36d2c4bed844af279462dc8 Mon Sep 17 00:00:00 2001 From: "William S. Moses" Date: Wed, 15 Jan 2025 18:47:29 -0600 Subject: [PATCH] fix ci errs --- test/integration/python.jl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/integration/python.jl b/test/integration/python.jl index 54c2eec16..91921dedf 100644 --- a/test/integration/python.jl +++ b/test/integration/python.jl @@ -2,6 +2,9 @@ using Reactant using Reactant: Ops using Test + +# Jax on Github CI dislikes X86 macos +@static if !Sys.isapple() || Sys.ARCH != :x86_64 using PythonCall @testset "PythonCall" begin @@ -11,3 +14,4 @@ using PythonCall @test typeof(result) == ConcreteRNumber{Float32} @test result ≈ 6 end +end \ No newline at end of file