Skip to content

Commit 80e8d0e

Browse files
committed
Don't test JLArrays
1 parent 564261c commit 80e8d0e

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

.github/workflows/Test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
julia --project -e "
3030
using Pkg
3131
Pkg.develop([PackageSpec(; name=basename(path), path) for path in ARGS])
32-
" lib/GPUArraysCore lib/JLArrays
32+
" lib/GPUArraysCore
3333
- uses: julia-actions/julia-runtest@v1
3434
continue-on-error: ${{ matrix.version == 'nightly' }}
3535
- uses: julia-actions/julia-processcoverage@v1

test/Project.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
33
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
44
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
5-
JLArrays = "27aeb0d3-9eb9-45fb-866b-73c2ecf80fcb"
65
KernelAbstractions = "63c18a36-062a-441e-b654-da1e3ab1ce7c"
76
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
87
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ include("setup.jl") # make sure everything is precompiled
4747
# choose tests
4848
const tests = []
4949
const test_runners = Dict()
50-
for AT in (JLArray, Array), name in keys(TestSuite.tests)
50+
for AT in (Array,), name in keys(TestSuite.tests)
5151
push!(tests, "$(AT)/$name")
5252
test_runners["$(AT)/$name"] = ()->TestSuite.tests[name](AT)
5353
end

test/setup.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using Distributed, Test, JLArrays
1+
using Distributed, Test
22

33
include("testsuite.jl")
44

@@ -15,7 +15,7 @@ function runtests(f, name)
1515
# generate a temporary module to execute the tests in
1616
mod_name = Symbol("Test", rand(1:100), "Main_", replace(name, '/' => '_'))
1717
mod = @eval(Main, module $mod_name end)
18-
@eval(mod, using Test, Random, JLArrays)
18+
@eval(mod, using Test, Random)
1919

2020
let id = myid()
2121
wait(@spawnat 1 print_testworker_started(name, id))
@@ -24,7 +24,7 @@ function runtests(f, name)
2424
ex = quote
2525
GC.gc(true)
2626
Random.seed!(1)
27-
JLArrays.allowscalar(false)
27+
# JLArrays.allowscalar(false)
2828

2929
@timed @testset $"$name" begin
3030
$f()

0 commit comments

Comments
 (0)