From aba1d2cd055283b21716f23f2655ad6d2d3973c6 Mon Sep 17 00:00:00 2001 From: Slawomir Chylek Date: Tue, 6 Feb 2018 11:52:10 +0100 Subject: [PATCH] Script for running VPA e2e tests. --- vertical-pod-autoscaler/hack/run-e2e.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 vertical-pod-autoscaler/hack/run-e2e.sh diff --git a/vertical-pod-autoscaler/hack/run-e2e.sh b/vertical-pod-autoscaler/hack/run-e2e.sh new file mode 100755 index 0000000000..3346db6294 --- /dev/null +++ b/vertical-pod-autoscaler/hack/run-e2e.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +# Copyright 2018 The Kubernetes Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +set -o errexit +set -o nounset +set -o pipefail + +SCRIPT_ROOT=$(dirname ${BASH_SOURCE})/.. + +go test ${SCRIPT_ROOT}/e2e/*go -v --args --ginkgo.v=true --ginkgo.focus="\[VPA\]"