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 5d9b27c commit d99fcfeCopy full SHA for d99fcfe
test/runtests.jl
@@ -1,5 +1,18 @@
1
# This file is a part of Julia. License is MIT: https://julialang.org/license
2
using Test, LinearAlgebra, SparseArrays
3
+
4
+# Because julia CI doesn't run stdlib tests via `Pkg.test` test deps must be manually installed if missing
5
+if Base.find_package("Aqua") === nothing
6
+ @debug "Installing Aqua.jl for SparseArrays.jl tests"
7
+ iob = IOBuffer()
8
+ try
9
+ Pkg.add("Aqua", io=iob) # Needed for custom julia version resolve tests
10
+ catch
11
+ println(String(take!(iob)))
12
+ rethrow()
13
+ end
14
+end
15
16
for file in readlines(joinpath(@__DIR__, "testgroups"))
17
file == "" && continue # skip empty lines
18
include(file * ".jl")
0 commit comments