Github user zentol commented on a diff in the pull request: https://github.com/apache/flink/pull/5612#discussion_r171571281 --- Diff: tools/travis_mvn_watchdog.sh --- @@ -576,61 +576,9 @@ case $TEST in printf "Running end-to-end tests\n" printf "==============================================================================\n" - if [ $EXIT_CODE == 0 ]; then - printf "\n==============================================================================\n" - printf "Running Wordcount end-to-end test\n" - printf "==============================================================================\n" - FLINK_DIR=build-target test-infra/end-to-end-test/test_batch_wordcount.sh - EXIT_CODE=$? - fi - - if [ $EXIT_CODE == 0 ]; then - printf "\n==============================================================================\n" - printf "Running Kafka end-to-end test\n" - printf "==============================================================================\n" - FLINK_DIR=build-target test-infra/end-to-end-test/test_streaming_kafka010.sh - EXIT_CODE=$? - fi - - if [ $EXIT_CODE == 0 ]; then - printf "\n==============================================================================\n" - printf "Running class loading end-to-end test\n" - printf "==============================================================================\n" - FLINK_DIR=build-target test-infra/end-to-end-test/test_streaming_classloader.sh - EXIT_CODE=$? - fi - - if [ $EXIT_CODE == 0 ]; then - printf "\n==============================================================================\n" - printf "Running Shaded Hadoop S3A end-to-end test\n" - printf "==============================================================================\n" - FLINK_DIR=build-target test-infra/end-to-end-test/test_shaded_hadoop_s3a.sh - EXIT_CODE=$? - fi - - if [ $EXIT_CODE == 0 ]; then - printf "\n==============================================================================\n" - printf "Running Shaded Presto S3 end-to-end test\n" - printf "==============================================================================\n" - FLINK_DIR=build-target test-infra/end-to-end-test/test_shaded_presto_s3.sh - EXIT_CODE=$? - fi - - if [ $EXIT_CODE == 0 ]; then - printf "\n==============================================================================\n" - printf "Running Hadoop-free Wordcount end-to-end test\n" - printf "==============================================================================\n" - FLINK_DIR=build-target CLUSTER_MODE=cluster test-infra/end-to-end-test/test_hadoop_free.sh - EXIT_CODE=$? - fi - - if [ $EXIT_CODE == 0 ]; then - printf "\n==============================================================================\n" - printf "Running Streaming Python Wordcount end-to-end test\n" - printf "==============================================================================\n" - FLINK_DIR=build-target test-infra/end-to-end-test/test_streaming_python_wordcount.sh - EXIT_CODE=$? - fi + FLINK_DIR=build-target flink-end-to-end-tests/run-pre-commit-tests.sh --- End diff -- indentation is off as it uses spaces opposed to tabs
---