Skip to content

Commit

Permalink
Setup a default KUBEVIRT_PROVIDER for make functional-test (#1675)
Browse files Browse the repository at this point in the history
This requires removing set -u because kubevirtci's scripts
use [ -z $KUBEVIRTCI_PATH ] to test for it being defined
and set -u makes this fail.

Signed-off-by: Maya Rashish <mrashish@redhat.com>
  • Loading branch information
maya-r committed Feb 25, 2021
1 parent 3447bb8 commit 46ed5d2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hack/build/run-functional-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,15 @@
#See the License for the specific language governing permissions and
#limitations under the License.

set -euo pipefail
set -eo pipefail

readonly MAX_CDI_WAIT_RETRY=30
readonly CDI_WAIT_TIME=10

script_dir="$(cd "$(dirname "$0")" && pwd -P)"
source hack/build/config.sh
source hack/build/common.sh
source cluster-up/hack/common.sh

KUBEVIRTCI_CONFIG_PATH="$(
cd "$(dirname "$BASH_SOURCE[0]")/../../"
Expand Down

0 comments on commit 46ed5d2

Please sign in to comment.