We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4755292 commit 63c6c25Copy full SHA for 63c6c25
test/integration/python.jl
@@ -2,6 +2,9 @@ using Reactant
2
using Reactant: Ops
3
4
using Test
5
+
6
+# Jax on Github CI dislikes X86 macos
7
+@static if !Sys.isapple() || Sys.ARCH != :x86_64
8
using PythonCall
9
10
@testset "PythonCall" begin
@@ -11,3 +14,4 @@ using PythonCall
11
14
@test typeof(result) == ConcreteRNumber{Float32}
12
15
@test result ≈ 6
13
16
end
17
+end
0 commit comments