From 92a19f856665393c77229ab973c513b475b999da Mon Sep 17 00:00:00 2001 From: Marek Kaluba Date: Thu, 15 Feb 2024 22:47:55 +0100 Subject: [PATCH] no longer use "FULL_TEST" ENV variable --- test/runtests.jl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index d4598e2..8a03fa9 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -3,7 +3,6 @@ using LinearAlgebra using SparseArrays using Groups -using Groups.GroupsCore import Groups.MatrixGroups using PropertyT @@ -15,7 +14,7 @@ include("optimizers.jl") include("check_positivity.jl") include("quick_tests.jl") -if haskey(ENV, "FULL_TEST") || haskey(ENV, "CI") +if haskey(ENV, "CI") @testset "PropertyT" begin include("constratint_matrices.jl") include("actions.jl")