bgeng777 commented on code in PR #173:
URL:
https://github.com/apache/flink-kubernetes-operator/pull/173#discussion_r853721497
##########
.github/workflows/ci.yml:
##########
@@ -73,7 +73,7 @@ jobs:
- name: Tests in flink-kubernetes-operator
run: |
cd flink-kubernetes-operator
- mvn integration-test -Dit.skip=false
+ mvn verify -Dit.skip=false
Review Comment:
You are right. In the root pom, we only declare `integration-test` goal for
`maven-failsafe-plugin` while not adding `verify` goal. As a result, `mvn
verify` phase will not execute the `maven-failsafe-plugin:verify`, which makes
the build will succeed even when the IT case fails or is not executed. I have
fixed this, the execution of ITCase can be found
[here](https://github.com/apache/flink-kubernetes-operator/runs/6089149415?check_suite_focus=true#step:10:2074).
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]