diff options
author | Stamatis Katsaounis <mokats@intracom-telecom.com> | 2019-02-19 12:38:10 +0200 |
---|---|---|
committer | Dan Xu <xudan16@huawei.com> | 2019-03-13 10:48:45 +0000 |
commit | b4e6a756ebeb019048cb03a0562534870b772cae (patch) | |
tree | 19035c5e15dbe4b227a76e3deaeffbd68afeb68f /etc/conf | |
parent | 0856c3ab2083ed8b8f16572c0f0b249aab203e69 (diff) |
Calculate checksum for input VNF
This patch adds checksum information inside ONAP related test case run
results. The checksum is produced by the VNF input which can either be
a CSAR file or an archive of Heat templates.
Change-Id: I0ed58bdc9cc4031da08fd2ac220ef294520ef447
Signed-off-by: Stamatis Katsaounis <mokats@intracom-telecom.com>
Diffstat (limited to 'etc/conf')
-rw-r--r-- | etc/conf/onap-vvp_config.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/etc/conf/onap-vvp_config.yml b/etc/conf/onap-vvp_config.yml index a7d08ea8..67d21fae 100644 --- a/etc/conf/onap-vvp_config.yml +++ b/etc/conf/onap-vvp_config.yml @@ -1,8 +1,8 @@ --- {% set build_tag = build_tag or '' %} -{% set heat_templates_dir = heat_templates_dir or '' %} -{% set result_dir = '/reports' %} +{% set heat_templates_archive = heat_templates_archive or '' %} +{% set result_dir = '/vvp/reports' %} onap-vvp: image_name: nexus3.onap.org:10001/onap/vvp/validation-scripts @@ -10,11 +10,11 @@ onap-vvp: opts: '-td --entrypoint=""' shell: '/bin/ash' volumes: - - '-v {{heat_templates_dir}}:/template' + - '-v {{dovetail_home}}/pre_config/{{heat_templates_archive}}.tar.gz:/tmp/{{heat_templates_archive}}.tar.gz' - '-v {{dovetail_home}}/results:{{result_dir}}' pre_condition: - - 'echo this is pre_condition' + - 'tar xf /tmp/{{heat_templates_archive}}.tar.gz -C /vvp' cmds: - - 'pytest --template-directory=/template --output-directory=/reports --report-format=json --continue-on-failure' + - 'pytest tests --template-directory=/vvp/{{heat_templates_archive}} --output-directory={{result_dir}} --report-format=json --continue-on-failure' post_condition: - 'echo this is post_condition' |