Skip to content

Commit 5807b07

Browse files
committed
Don't test type stability on 1.12
1 parent c0c9d66 commit 5807b07

1 file changed

Lines changed: 10 additions & 7 deletions

File tree

test/runtests.jl

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ include("utils.jl")
1919
else
2020
@testset verbose = true "Code quality" begin
2121
@testset "Aqua" begin
22-
Aqua.test_all(SparseMatrixColorings; stale_deps=(; ignore=[:Requires],))
22+
Aqua.test_all(SparseMatrixColorings; stale_deps = (; ignore = [:Requires]))
2323
end
2424
@testset "JET" begin
25-
JET.test_package(SparseMatrixColorings; target_defined_modules=true)
25+
JET.test_package(SparseMatrixColorings; target_defined_modules = true)
2626
end
2727
# @testset "JuliaFormatter" begin
28-
# TODO: switch to Runic (temporarily deactivated)
29-
# @test JuliaFormatter.format(
30-
# SparseMatrixColorings; verbose=false, overwrite=false
31-
# )
28+
# TODO: switch to Runic (temporarily deactivated)
29+
# @test JuliaFormatter.format(
30+
# SparseMatrixColorings; verbose=false, overwrite=false
31+
# )
3232
# end
3333
@testset "Doctests" begin
3434
Documenter.doctest(SparseMatrixColorings)
@@ -88,7 +88,10 @@ include("utils.jl")
8888
end
8989
@testset verbose = true "Performance" begin
9090
@testset "Type stability" begin
91-
include("type_stability.jl")
91+
if VERSION < v"1.12"
92+
# TODO: fix JET misbehaving
93+
include("type_stability.jl")
94+
end
9295
end
9396
@testset "Allocations" begin
9497
include("allocations.jl")

0 commit comments

Comments
 (0)