Skip to content

Commit

Permalink
fix ft
Browse files Browse the repository at this point in the history
  • Loading branch information
YichuanSun committed Nov 7, 2023
1 parent bd2e1c3 commit 4daf632
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/java8_integration_tests_ft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ jobs:
ALLUXIO_DOCKER_FORK_COUNT=1 \
ALLUXIO_DOCKER_NO_TTY=true \
ALLUXIO_DOCKER_GIT_CLEAN=true \
ALLUXIO_DOCKER_MVN_PROJECT_LIST_COMPILE=dora/tests \
ALLUXIO_DOCKER_MVN_PROJECT_LIST_TEST=dora/tests \
ALLUXIO_DOCKER_MVN_TESTS=${{ matrix.modules }} \
dev/github/run_docker.sh
Expand Down
7 changes: 4 additions & 3 deletions dev/github/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,16 @@ JAVA_HOME=${JAVA_HOME_BACKUP}
PATH=${PATH_BACKUP}

mvn_test_args=""
if [ -n "${ALLUXIO_MVN_PROJECT_LIST_TEST}" ]; then
mvn_test_args+="-am -pl ${ALLUXIO_MVN_PROJECT_LIST_TEST}"
fi

mvn_test_args+=" -fn -DfailIfNoTests=false -Dsurefire.failIfNoSpecifiedTests=false --fail-at-end"
if [ -n "${ALLUXIO_MVN_TESTS}" ]; then
mvn_test_args+=" -Dtest=${ALLUXIO_MVN_TESTS}"
fi

if [ -n "${ALLUXIO_MVN_PROJECT_LIST_TEST}" ]; then
mvn_test_args+="-pl ${ALLUXIO_MVN_PROJECT_LIST_TEST}"
fi

# Run tests
mvn -Duser.home=/home/jenkins test -Dmaven.main.skip -Dskip.protoc=true -Dmaven.javadoc.skip -Dlicense.skip=true \
-Dcheckstyle.skip=true -Dfindbugs.skip=true -Dsort.skip -Dsurefire.forkCount=${ALLUXIO_FORK_COUNT} ${mvn_test_args}

0 comments on commit 4daf632

Please sign in to comment.