From 890166a27c46fd9d46b90a97cd792d2831952a2d Mon Sep 17 00:00:00 2001 From: Nakul Joshi Date: Tue, 2 Jul 2024 13:32:23 -0700 Subject: [PATCH] *Actually* skip tests while running backwards compatibility test. --- .github/scripts/backwards_compatibility_check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/backwards_compatibility_check.sh b/.github/scripts/backwards_compatibility_check.sh index c1d3aa573..7094fd7dc 100755 --- a/.github/scripts/backwards_compatibility_check.sh +++ b/.github/scripts/backwards_compatibility_check.sh @@ -21,7 +21,7 @@ get_latest_jar() { # Get the JAR with the changes that need to be verified. get_current_jar() { - mvn -B install -DskipTests + mvn -B install -Dmaven.test.skip=true CURRENT_VERSION=$(mvn -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive exec:exec) CURRENT_JAR=$KCL_MAVEN_DIR/$CURRENT_VERSION/amazon-kinesis-client-$CURRENT_VERSION.jar }