Merge "Made sequence indent consistent"

This commit is contained in:
Zuul 2020-05-07 14:42:09 +00:00 committed by Gerrit Code Review
commit 480ec972a6
10 changed files with 45 additions and 44 deletions

View File

@ -14,7 +14,9 @@ rules:
empty-lines: empty-lines:
max: 1 max: 1
max-end: 2 max-end: 2
indentation: disable indentation:
level: error
indent-sequences: consistent
new-line-at-end-of-file: disable new-line-at-end-of-file: disable
line-length: disable line-length: disable
truthy: false truthy: false

View File

@ -1,6 +1,8 @@
- hosts: all - hosts: all
vars: vars:
tox_molecule_packages: "{{ _tox_molecule_packages | default([]) }}" tox_molecule_packages: "{{ _tox_molecule_packages | default([]) }}"
roles:
- role: ensure-docker
tasks: tasks:
- name: Gather variables for each operating system - name: Gather variables for each operating system
include_vars: "{{ item }}" include_vars: "{{ item }}"
@ -22,6 +24,3 @@
name: "{{ tox_molecule_packages }}" name: "{{ tox_molecule_packages }}"
when: when:
- (tox_molecule_packages | length) > 0 - (tox_molecule_packages | length) > 0
roles:
- role: ensure-docker