From 25934e70f48d1afd25c2997333ce85b721081609 Mon Sep 17 00:00:00 2001 From: Marek Kaluba Date: Mon, 21 Jun 2021 16:39:54 +0200 Subject: [PATCH] don't run benchmarks during CI --- test/runtests.jl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index d9ffe03..7755670 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -35,6 +35,9 @@ using LinearAlgebra include("fp_groups.jl") include("AutFn.jl") - include("benchmarks.jl") + + if !haskey(ENV, "CI") + include("benchmarks.jl") + end end end