From 1b89107ceea29d3bfbf09c8b1d7a82308d277752 Mon Sep 17 00:00:00 2001 From: Christopher Dilks Date: Mon, 9 Feb 2026 17:04:37 -0500 Subject: [PATCH] build: skip unit tests by default --- build-coatjava.sh | 4 ++-- pom.xml | 12 ++++++++++++ 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/build-coatjava.sh b/build-coatjava.sh index be368ab0d7..dcb6bdf617 100755 --- a/build-coatjava.sh +++ b/build-coatjava.sh @@ -318,9 +318,9 @@ cp external-dependencies/jclara-4.3-SNAPSHOT.jar $prefix_dir/lib/utils # build (and test) unset CLAS12DIR if $runUnitTests; then - $mvn install # also runs unit tests + $mvn install -DskipTests=false else - $mvn install -DskipTests + $mvn install fi # run spotbugs diff --git a/pom.xml b/pom.xml index 62c2a0aa3d..f6fca6969c 100644 --- a/pom.xml +++ b/pom.xml @@ -29,6 +29,18 @@ + + + skip-tests + + true + + + true + + + +