Skip to content

Commit abb8dbd

Browse files
authored
Test fixes for nightly. (#514)
1 parent 2a8540e commit abb8dbd

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
version: ['1.8', '1.9', '1.10.0-rc2', 'nightly']
17+
version: ['1.8', '1.9', '1.10', 'nightly']
1818
os: [ubuntu-latest, macOS-latest, windows-latest]
1919
arch: [x64]
2020
steps:

test/testsuite/base.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,8 @@ end
377377
# only GPUArrays materialize the reinterpret(reshape) wrapper
378378
@test b isa AT{Float32, 2}
379379
end
380-
@test Array(b) == [1.0 0.0 0.0; 2.0 2.0 3.0]
380+
@test(Array(b) == [1.0 0.0 0.0; 2.0 2.0 3.0],
381+
broken=(AT <: Array && VERSION >= v"1.11.0-DEV.727"))
381382

382383
a = AT(Float32[1.0 0.0 0.0; 2.0 2.0 3.0])
383384
b = reinterpret(reshape, ComplexF32, a)

0 commit comments

Comments
 (0)