aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2019-11-09 13:59:16 +0100
committerCédric Ollivier <cedric.ollivier@orange.com>2019-11-09 15:05:00 +0100
commita5bbece9c373b219fdfce1c21d84355a663ceb95 (patch)
treed5a1bf5fde2a16d72b3080fe5090afca7eb3c0a1
parent45baa7718c820bc712f24afa4bfa7d8d2ec2b4eb (diff)
Add S3 env vars in env.py
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 <cedric.ollivier@orange.com> (cherry picked from commit 66809ebba91d1f068c0a930dba695c3b02fc85bd)
-rw-r--r--xtesting/utils/env.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/xtesting/utils/env.py b/xtesting/utils/env.py
index f17d78a1..c781b846 100644
--- a/xtesting/utils/env.py
+++ b/xtesting/utils/env.py
@@ -22,7 +22,10 @@ INPUTS = {
'TEST_DB_URL': 'http://testresults.opnfv.org/test/api/v1/results',
'ENERGY_RECORDER_API_URL': 'http://energy.opnfv.fr/resources',
'ENERGY_RECORDER_API_USER': None,
- 'ENERGY_RECORDER_API_PASSWORD': None
+ 'ENERGY_RECORDER_API_PASSWORD': None,
+ 'S3_ENDPOINT_URL': None,
+ 'S3_DST_URL': None,
+ 'HTTP_DST_URL': None
}