Fix YAML source and check it on Shippable (#15678)
Fix YAML source and check it on Shippable
This commit is contained in:
parent
4fe8fe303f
commit
4d48711242
5 changed files with 30 additions and 4 deletions
22
.yamllint
Normal file
22
.yamllint
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
extends: default
|
||||||
|
|
||||||
|
# Disable all cosmetic rules
|
||||||
|
# (see https://github.com/ansible/ansible/pull/15470#issuecomment-214437876)
|
||||||
|
# Only keep 'key-duplicates' and 'new-lines: {type: unix}' checks enabled.
|
||||||
|
|
||||||
|
rules:
|
||||||
|
braces: disable
|
||||||
|
brackets: disable
|
||||||
|
colons: disable
|
||||||
|
commas: disable
|
||||||
|
comments: disable
|
||||||
|
comments-indentation: disable
|
||||||
|
document-start: disable
|
||||||
|
empty-lines: disable
|
||||||
|
hyphens: disable
|
||||||
|
indentation: disable
|
||||||
|
key-duplicates: enable
|
||||||
|
line-length: disable
|
||||||
|
new-line-at-end-of-file: disable
|
||||||
|
new-lines: {type: unix}
|
||||||
|
trailing-spaces: disable
|
|
@ -2,7 +2,7 @@ language: python
|
||||||
|
|
||||||
env:
|
env:
|
||||||
matrix:
|
matrix:
|
||||||
- TEST=code-smell
|
- TEST=code-smell INSTALL_DEPS=1
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
|
|
|
@ -192,7 +192,6 @@
|
||||||
volume: 3
|
volume: 3
|
||||||
wait: true
|
wait: true
|
||||||
wait_timeout: "{{ rackspace_wait_timeout }}"
|
wait_timeout: "{{ rackspace_wait_timeout }}"
|
||||||
wait_timeout: 600
|
|
||||||
register: rax_cdb
|
register: rax_cdb
|
||||||
|
|
||||||
- name: Validate rax_cdb resize volume 2
|
- name: Validate rax_cdb resize volume 2
|
||||||
|
@ -251,7 +250,6 @@
|
||||||
flavor: 2
|
flavor: 2
|
||||||
wait: true
|
wait: true
|
||||||
wait_timeout: "{{ rackspace_wait_timeout }}"
|
wait_timeout: "{{ rackspace_wait_timeout }}"
|
||||||
wait_timeout: 600
|
|
||||||
register: rax_cdb
|
register: rax_cdb
|
||||||
|
|
||||||
- name: Validate rax_cdb resize flavor 2
|
- name: Validate rax_cdb resize flavor 2
|
||||||
|
|
|
@ -25,7 +25,6 @@
|
||||||
- '"val1" in test_env2.stdout_lines'
|
- '"val1" in test_env2.stdout_lines'
|
||||||
|
|
||||||
- hosts: testhost
|
- hosts: testhost
|
||||||
tasks:
|
|
||||||
vars:
|
vars:
|
||||||
- test1:
|
- test1:
|
||||||
key1: val1
|
key1: val1
|
||||||
|
|
|
@ -2,8 +2,15 @@
|
||||||
|
|
||||||
source_root=$(python -c "from os import path; print(path.abspath(path.join(path.dirname('$0'), '../../..')))")
|
source_root=$(python -c "from os import path; print(path.abspath(path.join(path.dirname('$0'), '../../..')))")
|
||||||
|
|
||||||
|
install_deps="${INSTALL_DEPS:-}"
|
||||||
|
|
||||||
cd "${source_root}"
|
cd "${source_root}"
|
||||||
|
|
||||||
|
if [ "${install_deps}" != "" ]; then
|
||||||
|
pip install yamllint
|
||||||
|
fi
|
||||||
|
|
||||||
|
yamllint .
|
||||||
test/code-smell/replace-urlopen.sh .
|
test/code-smell/replace-urlopen.sh .
|
||||||
test/code-smell/use-compat-six.sh lib
|
test/code-smell/use-compat-six.sh lib
|
||||||
test/code-smell/boilerplate.sh
|
test/code-smell/boilerplate.sh
|
||||||
|
|
Loading…
Reference in a new issue