Skip to content

Commit 896451a

Browse files
authored
Merge pull request #120 from AndrewTwydell/main
adding module defaults functionality
2 parents f0c849a + 36f5d58 commit 896451a

File tree

8 files changed

+507
-10
lines changed

8 files changed

+507
-10
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ venv3
77
tests/output
88
ibm-ibm_zos_cics-*.tar.gz
99
tests/integration/targets/cics_cmci/cmci-variables.yml
10+
tests/integration/inventory

dev-requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# (c) Copyright IBM Corp. 2020,2021
22
# Apache License, Version 2.0 (see https://opensource.org/licenses/Apache-2.0)
33
-r requirements.txt
4-
ansible==2.10.7
4+
ansible-core==2.13.7; python_version >= '3'
5+
ansible-core==2.11.12; python_version < '3'
56
junit-xml==1.9 # To get JUnit xml report from ansible-test
67
pytest_mock==1.12.1
78
mock==3.0.5

meta/runtime.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
1-
requires_ansible: '>=2.10.7'
1+
requires_ansible: '>=2.10.7'
2+
action_groups:
3+
cmci_group:
4+
- cmci_action
5+
- cmci_create
6+
- cmci_delete
7+
- cmci_get
8+
- cmci_update

0 commit comments

Comments
 (0)