-
Notifications
You must be signed in to change notification settings - Fork 2
/
molecule.yml
57 lines (46 loc) · 1.28 KB
/
molecule.yml
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
57
---
molecule:
# directory in CWD to place all temp files, etc.
molecule_dir: .molecule
# where temporary state will be stored (lives under molecule_dir)
state_file: state
# name of temporary vagrantfile created during runs (lives under molecule_dir)
vagrantfile_file: vagrantfile
# directories to ignore when doing trailing whitespace checks on files during verify command
ignore_paths:
- .git
- .vagrant
- .molecule
# directory to look for testinfra tests
testinfra_dir: tests
# directory containing group_vars to use with ansible
group_vars: ../tests/group_vars
dependency:
name: galaxy
requirements_file: tests/requirements.yml
# ansible related configuration
ansible:
playbook: tests/playbook.yml
# configuration options for the internal call to vagrant
vagrant:
# molecule's --platform option will look for these names
raw_config_args:
- "landrush.enabled = true"
- "landrush.tld = 'vm'"
platforms:
- name: Debian
box: debian/stretch64
providers:
- name: virtualbox
type: virtualbox
options:
memory: 2048
cpus: 2
instances:
- name: prestashop.vm
ansible_groups:
- test01
interfaces:
- network_name: private_network
type: dhcp
auto_config: true