blob: a543ac1f4a983d5a5b91cdb2e2b9375e9e9c7eb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
---
# SPDX-license-identifier: Apache-2.0
##############################################################################
# Copyright (c) 2017 SUSE Linux GmbH
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
- name: install required packages
package:
name: "{{ required_packages[ansible_pkg_mgr] }}"
update_cache: "{{ (ansible_pkg_mgr in ['apt', 'zypper']) | ternary('yes', omit) }}"
state: present
# Docker is needed for test frameworks
- name: Ensure Docker service is started and enabled
service:
name: docker
state: started
enabled: yes
- name: install required pip packages
pip:
name: "{{ required_pip }}"
state: present
extra_args: '-c https://raw.githubusercontent.com/openstack/requirements/{{ requirements_git_install_branch }}/upper-constraints.txt'
# odl scenarios require to add odl variables to env
- include_tasks: process_neutron_conf.yml
when: "'-odl-' in deploy_scenario"
- name: prepare environment file for tests
template:
src: env.j2
dest: /root/env
mode: 0755
- name: create the script to prepare for testing
template:
src: prepare-tests.sh.j2
dest: /root/prepare-tests.sh
mode: 0755
- name: create the script to run functest
template:
src: run-functest.sh.j2
dest: /root/run-functest.sh
mode: 0755
- name: create the script to run yardstick
template:
src: run-yardstick.sh.j2
dest: /root/run-yardstick.sh
mode: 0755
|