Skip to content

Commit 3a36458

Browse files
Update run_no_prep_tests.sh
1 parent ea3041e commit 3a36458

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/run_no_prep_tests.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ is_jdk_14=`echo $JAVA_HOME | grep 14.`
2121
is_travis_jdk_8=`echo $TRAVIS_JDK | grep openjdk8`
2222
if [[ "${is_jdk_8}" != "" && "${is_travis_jdk_8}" != "" ]];
2323
then
24-
./mvnw ${MAVEN_OPTS} \
24+
./mvnw \
2525
-pl !bolt-google-cloud-functions \
2626
-pl !bolt-helidon \
2727
-pl !bolt-quarkus-examples \
@@ -39,7 +39,7 @@ then
3939
if git status --porcelain | grep .; then git --no-pager diff; exit 1; fi
4040
elif [[ "${is_jdk_14}" != "" ]];
4141
then
42-
./mvnw ${MAVEN_OPTS} \
42+
./mvnw \
4343
-pl !bolt-micronaut \
4444
clean test \
4545
'-Dtest=test_locally.**.*Test' -Dsurefire.failIfNoSpecifiedTests=false ${CI_OPTIONS} \
@@ -48,7 +48,7 @@ then
4848
--no-transfer-progress && \
4949
if git status --porcelain | grep .; then git --no-pager diff; exit 1; fi
5050
else
51-
./mvnw ${MAVEN_OPTS} \
51+
./mvnw \
5252
clean test \
5353
'-Dtest=test_locally.**.*Test' -Dsurefire.failIfNoSpecifiedTests=false ${CI_OPTIONS} \
5454
-DfailIfNoTests=false \

0 commit comments

Comments
 (0)