From ae8d172f6ac112e43e212a3b92791cfd718fc7b0 Mon Sep 17 00:00:00 2001 From: David Heryanto Date: Mon, 9 Mar 2020 11:26:01 +0800 Subject: [PATCH] Relax OS check when starting e2e test --- .prow/scripts/test-end-to-end-batch.sh | 6 ------ .prow/scripts/test-end-to-end.sh | 6 ------ 2 files changed, 12 deletions(-) diff --git a/.prow/scripts/test-end-to-end-batch.sh b/.prow/scripts/test-end-to-end-batch.sh index ba395fc6166..b7c1794691b 100755 --- a/.prow/scripts/test-end-to-end-batch.sh +++ b/.prow/scripts/test-end-to-end-batch.sh @@ -3,12 +3,6 @@ set -e set -o pipefail -if ! cat /etc/*release | grep -q stretch; then - echo ${BASH_SOURCE} only supports Debian stretch. - echo Please change your operating system to use this script. - exit 1 -fi - echo " This script will run end-to-end tests for Feast Core and Batch Serving. diff --git a/.prow/scripts/test-end-to-end.sh b/.prow/scripts/test-end-to-end.sh index e8160444d39..951972f8e6b 100755 --- a/.prow/scripts/test-end-to-end.sh +++ b/.prow/scripts/test-end-to-end.sh @@ -3,12 +3,6 @@ set -e set -o pipefail -if ! cat /etc/*release | grep -q stretch; then - echo ${BASH_SOURCE} only supports Debian stretch. - echo Please change your operating system to use this script. - exit 1 -fi - echo " This script will run end-to-end tests for Feast Core and Online Serving.