Skip to content

Commit 2b2fb71

Browse files
authored
Merge pull request #9 from Zuehlke/feature/update-to-yaml-syntax
Update to clean YAML syntax
2 parents 308d3a8 + 0c0a27e commit 2b2fb71

2 files changed

Lines changed: 12 additions & 3 deletions

File tree

roles/ansible-lint/tasks/main.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
---
22

33
- name: Install ansible-lint at version 5.0.12
4-
pip: state=present name=ansible-lint version=5.0.12
4+
pip:
5+
name: ansible-lint
6+
version: 5.0.12
7+
state: present

roles/testinfra/tasks/main.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
---
22

33
- name: Install testinfra at version 6.3.0
4-
pip: state=present name=pytest-testinfra version=6.3.0
4+
pip:
5+
name: pytest-testinfra
6+
version: 6.3.0
7+
state: present
58

69
- name: Install pytest-spec formatter at version 3.2.0
7-
pip: state=present name=pytest-spec version=3.2.0
10+
pip:
11+
name: pytest-spec
12+
version: 3.2.0
13+
state: present

0 commit comments

Comments
 (0)