summaryrefslogtreecommitdiffstats
path: root/etc/conf/onap-vvp_config.yml
blob: d812e1f42c7c31911fde0e420b81d0c87e875fdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---

{% set build_tag = build_tag or '' %}
{% 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
  docker_tag: latest
  opts:
    detach: true
    tty: true
    entrypoint: ''
  shell: '/bin/ash'
  volumes:
    - '{{dovetail_home}}/pre_config/{{heat_templates_archive}}.tar.gz:/tmp/{{heat_templates_archive}}.tar.gz'
    - '{{dovetail_home}}/results:{{result_dir}}'
  pre_condition:
    - 'tar xf /tmp/{{heat_templates_archive}}.tar.gz -C /vvp'
  cmds:
    - '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'