From b33fc07ea2cfd7c4bad0dd404ad0cb45dbb476df Mon Sep 17 00:00:00 2001 From: Georg Kunz Date: Sun, 1 Apr 2018 11:35:09 +0200 Subject: API validaton exemption for Danube-based release This patch adds the ability to Dovetail to disable strict API response validation in Tempest-based test cases run by Functest. This is a backport of the changes from master, targeting OVP 1.0.1 Corresponding updates of the web portal will follow. JIRA: DOVETAIL-633 Change-Id: Iace99ea1b6224ea907a2c3af8676e9285e6ad3ee Signed-off-by: Georg Kunz --- dovetail/patch/functest/disable-api-validation/apply.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 dovetail/patch/functest/disable-api-validation/apply.sh (limited to 'dovetail/patch/functest/disable-api-validation/apply.sh') diff --git a/dovetail/patch/functest/disable-api-validation/apply.sh b/dovetail/patch/functest/disable-api-validation/apply.sh new file mode 100755 index 00000000..915bce43 --- /dev/null +++ b/dovetail/patch/functest/disable-api-validation/apply.sh @@ -0,0 +1,12 @@ +#!/bin/bash +set -e +set -u + +# without setting the user, git does not allow to create a commit +git config --global user.email "verified@opnfv.org" +git config --global user.name "Dovetail" + +cd /src/tempest +git am $(dirname $0)/0001-Allow-additional-properties-in-API-responses.patch + +exit 0 -- cgit 1.2.3-korg