mirror of
https://github.com/ansible/awx.git
synced 2026-01-09 15:02:07 -03:30
added git pre commit hook to run flake8
This commit is contained in:
parent
d8aff34f63
commit
0b4efa3fcd
@ -18,4 +18,4 @@ exclude=.tox,awx/lib/site-packages,awx/plugins/inventory/ec2.py,awx/plugins/inve
|
||||
|
||||
[flake8]
|
||||
ignore=E201,E203,E221,E225,E231,E241,E251,E261,E265,E302,E303,E501,W291,W391,W293,E731
|
||||
exclude=.tox,awx/lib/site-packages,awx/plugins/inventory/ec2.py,awx/plugins/inventory/gce.py,awx/plugins/inventory/vmware.py,awx/plugins/inventory/windows_azure.py,awx/plugins/inventory/openstack.py,awx/plugins/inventory/rax.py,awx/ui,awx/api/urls.py,awx/main/migrations,awx/main/tests/data,node_modules/,awx/projects/,tools/docker
|
||||
exclude=.tox,awx/lib/site-packages,awx/plugins/inventory/ec2.py,awx/plugins/inventory/gce.py,awx/plugins/inventory/vmware.py,awx/plugins/inventory/windows_azure.py,awx/plugins/inventory/openstack.py,awx/plugins/inventory/rax.py,awx/ui,awx/api/urls.py,awx/main/migrations,awx/main/tests/data,node_modules/,awx/projects/,tools/docker,awx/settings/local_settings.py
|
||||
|
||||
2
tools/git_hooks/pre-commit
Executable file
2
tools/git_hooks/pre-commit
Executable file
@ -0,0 +1,2 @@
|
||||
#!/bin/bash
|
||||
ansible-playbook -i "127.0.0.1," tools/git_hooks/pre_commit.yml
|
||||
8
tools/git_hooks/pre_commit.yml
Normal file
8
tools/git_hooks/pre_commit.yml
Normal file
@ -0,0 +1,8 @@
|
||||
- hosts: all
|
||||
connection: local
|
||||
gather_facts: false
|
||||
tasks:
|
||||
- name: lint check w/ flake8
|
||||
command: 'flake8 {{ playbook_dir }}/../../'
|
||||
register: result
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user