1
0
mirror of https://github.com/kalmarek/PropertyT.jl.git synced 2024-08-16 18:02:41 +02:00
PropertyT.jl/test/runtests.jl
Marek Kaluba 18f681b12b
add really quick tests to be run first
tests run really fast, but compilation time is killing it...
2022-11-16 00:16:01 +01:00

30 lines
621 B
Julia

using Test
using LinearAlgebra
using SparseArrays
using Groups
using Groups.GroupsCore
import Groups.MatrixGroups
using PropertyT
using SymbolicWedderburn
using SymbolicWedderburn.StarAlgebras
using SymbolicWedderburn.PermutationGroups
include("optimizers.jl")
include("check_positivity.jl")
include("quick_tests.jl")
if haskey(ENV, "FULL_TEST") || haskey(ENV, "CI")
@testset "PropertyT" begin
include("constratint_matrices.jl")
include("actions.jl")
include("1703.09680.jl")
include("1712.07167.jl")
include("1812.03456.jl")
include("graded_adj.jl")
end
end