Skip to content

Commit

Permalink
fix tests: don't test Pardiso in tests/resolve.jl
Browse files Browse the repository at this point in the history
It was automatically tested by default in resolve.jl after #550 made it an AbstractSparseFactorization
which does not always work. Instead, Pardiso is tested in tests/pardiso/pardiso.jl
  • Loading branch information
j-fu committed Nov 4, 2024
1 parent dfe11ac commit a4ec2f8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/resolve.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ using LinearSolve, LinearAlgebra, SparseArrays, InteractiveUtils, Test
using LinearSolve: AbstractDenseFactorization, AbstractSparseFactorization

for alg in vcat(InteractiveUtils.subtypes(AbstractDenseFactorization),
InteractiveUtils.subtypes(AbstractSparseFactorization))
InteractiveUtils.subtypes(AbstractSparseFactorization))
if alg in [PardisoJL]
## Pardiso has extra tests in test/pardiso/pardiso.jl
continue
end
@show alg
if !(alg in [
DiagonalFactorization,
Expand Down

0 comments on commit a4ec2f8

Please sign in to comment.