From 937ba8a21bce58aafd97c8eb3ca3177a3f50ffcd Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Sat, 9 Nov 2019 13:59:16 +0100 Subject: Add S3 env vars in env.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It completes the previous commits adding S3 support: https://gerrit.opnfv.org/gerrit/c/functest-xtesting/+/68760 https://gerrit.opnfv.org/gerrit/c/functest-xtesting/+/68796 Change-Id: Iaaeb02ef2d9c6cdb7ff6c2c52e7086c751119871 Signed-off-by: Cédric Ollivier (cherry picked from commit 66809ebba91d1f068c0a930dba695c3b02fc85bd) --- xtesting/utils/env.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xtesting/utils/env.py b/xtesting/utils/env.py index 94d3b16c..43297d03 100644 --- a/xtesting/utils/env.py +++ b/xtesting/utils/env.py @@ -19,7 +19,10 @@ INPUTS = { 'INSTALLER_TYPE': 'unknown', 'BUILD_TAG': None, 'NODE_NAME': None, - 'TEST_DB_URL': 'http://testresults.opnfv.org/test/api/v1/results' + 'TEST_DB_URL': 'http://testresults.opnfv.org/test/api/v1/results', + 'S3_ENDPOINT_URL': None, + 'S3_DST_URL': None, + 'HTTP_DST_URL': None } -- cgit 1.2.3-korg