Reamer commented on code in PR #4506: URL: https://github.com/apache/zeppelin/pull/4506#discussion_r1086434414
########## .github/workflows/core.yml: ########## @@ -277,10 +277,10 @@ jobs: auto-activate-base: false use-mamba: true - name: run tests for flink before 1.15 (exclusive) - if: matrix.flink != '115' - run: ./mvnw verify -pl flink/flink-scala-2.11,flink/flink-scala-2.12,flink-cmd,zeppelin-interpreter-integration -am -Pflink-${{ matrix.flink }} -Phadoop2 -Pintegration -DfailIfNoTests=false -Dtest=org.apache.zeppelin.flink.*Test,FlinkIntegrationTest${{ matrix.flink }} ${MAVEN_ARGS} - - name: run tests for flink before 1.15 (inclusive) - if: matrix.flink == '115' + if: matrix.flink < '115' + run: ./mvnw verify -pl flink/flink-scala-2.11,flink/flink-scala-2.12,flink-cmd,zeppelin-interpreter-integration -Pflink-${{ matrix.flink }} -Phadoop2 -Pintegration -DfailIfNoTests=false -B -Dtest=org.apache.zeppelin.flink.*Test,FlinkIntegrationTest${{ matrix.flink }} ${MAVEN_ARGS} Review Comment: `-B` is part of `${MAVEN_ARGS} it is therefore not necessary at this point.` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@zeppelin.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org