-
Notifications
You must be signed in to change notification settings - Fork 3
/
molecule.yml
28 lines (28 loc) · 943 Bytes
/
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
dependency:
name: galaxy
options:
role-file: ../../requirements.yml # relative to the role dir
requirements-file: ../../requirements.yml
provisioner:
name: ansible
playbooks: # These paths are relative to scenario dir
prepare: ../shared/prepare.yml
converge: ../shared/playbook.yml
cleanup: ../shared/cleanup.yml
config_options:
defaults:
stdout_callback: yaml
force_color: true
remote_tmp: /tmp/${USER}/ansible
verifier:
name: testinfra
options:
# Add a -v so you see the individual test names,
# particularly useful with parameterized tests
v: true
junit-xml: junit.xml
# Using the shared directory is useful for sharing tests across scenarios,
# but is not a requirement. For scenario specific tests, add the appropriate
# file path to the test or test directory below
additional_files_or_dirs:
- ../../shared/tests # relative to the scenario tests dir