forked from QuantumKitHub/MatrixAlgebraKit.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruntests.jl
More file actions
43 lines (41 loc) · 1.03 KB
/
runtests.jl
File metadata and controls
43 lines (41 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
using SafeTestsets
@safetestset "Truncate" begin
include("truncate.jl")
end
@safetestset "QR / LQ Decomposition" begin
include("qr.jl")
include("lq.jl")
end
@safetestset "Singular Value Decomposition" begin
include("svd.jl")
end
@safetestset "Hermitian Eigenvalue Decomposition" begin
include("eigh.jl")
end
@safetestset "General Eigenvalue Decomposition" begin
include("eig.jl")
end
@safetestset "Schur Decomposition" begin
include("schur.jl")
end
@safetestset "Polar Decomposition" begin
include("polar.jl")
end
@safetestset "Image and Null Space" begin
include("orthnull.jl")
end
@safetestset "ChainRules" begin
include("chainrules.jl")
end
@safetestset "MatrixAlgebraKit.jl" begin
@safetestset "Code quality (Aqua.jl)" begin
using MatrixAlgebraKit
using Aqua
Aqua.test_all(MatrixAlgebraKit)
end
@safetestset "Code linting (JET.jl)" begin
using MatrixAlgebraKit
using JET
JET.test_package(MatrixAlgebraKit; target_defined_modules=true)
end
end