From 26e48c267a5d5d2ec8ce9a354e63a185993b6b28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Legat?= Date: Sun, 4 May 2025 13:32:13 +0200 Subject: [PATCH] Avoid including independent twice --- test/commutativetests.jl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/commutativetests.jl b/test/commutativetests.jl index 36876649..148d7552 100644 --- a/test/commutativetests.jl +++ b/test/commutativetests.jl @@ -1,4 +1,8 @@ for file in readdir(joinpath(@__DIR__, "commutative")) + if file == "independent.jl" + # It's included by `gcd.jl` + continue + end if file == "complex.jl" && !isdefined(Mod, Symbol("@complex_polyvar")) continue end