mirror of
https://github.com/ansible/awx.git
synced 2026-01-12 18:40:01 -03:30
* release_3.2.0: (66 commits) fix workflow maker lookup issues adding extra logic check for ansible_facts in smart search adding "admin_role" as a default query param for insights cred lookup changing insights cred lookup to not use hard coded cred type fix rounding of capacity percentage Catch potential unicode errors when looking up addrinfo fixing typo with adding query params for instance groups modal move percentage capacitty to variable Add unit test for inventory_sources_already_updated Check for inventory sources already updated from start args Fixed inventory completed jobs pagination bug by setting default page size Remove the logic blocking dependent inventory updates on callbacks fix instance group percentage Remove host-filter-modal import Fix partial hover highlight of host filter modal row Removed leading slash on basePath Fixed host nested groups pagination Added trailing slash to basePath Fixed nested groups pagination Fixed host_filter searching related fields ...
22 lines
1.2 KiB
INI
Executable File
22 lines
1.2 KiB
INI
Executable File
[pep8]
|
|
# E201 - Whitespace after '('
|
|
# E203 - Whitespace before ":"
|
|
# E221 - Multiple spaces after operator
|
|
# E225 - Missing whitespace around operator
|
|
# E231 - Missing whitespace after ','
|
|
# E241 - Multiple spaces after ','
|
|
# E251 - Unexpected spaces around keyword / parameter equals
|
|
# E261 - At least two spaces before inline comment
|
|
# E302 - Expected 2 blank lines found 0
|
|
# E303 - Too many blank lines
|
|
# E501 - Line too long
|
|
# W291 - Trailing whitespace
|
|
# W391 - Blank line at end of file
|
|
# W293 - Blank line contains whitespace
|
|
ignore=E201,E203,E221,E225,E231,E241,E251,E261,E265,E303,E501,W291,W391,W293
|
|
exclude=.tox,venv,awx/lib/site-packages,awx/plugins/inventory/ec2.py,awx/plugins/inventory/gce.py,awx/plugins/inventory/vmware.py,awx/plugins/inventory/openstack.py,awx/ui,awx/api/urls.py,awx/main/migrations,awx/main/south_migrations,awx/main/tests/data,installer/openshift/settings.py
|
|
|
|
[flake8]
|
|
ignore=E201,E203,E221,E225,E231,E241,E251,E261,E265,E303,E501,W291,W391,W293,E731,F405
|
|
exclude=.tox,venv,awx/lib/site-packages,awx/plugins/inventory,awx/ui,awx/api/urls.py,awx/main/migrations,awx/main/south_migrations,awx/main/tests/data,node_modules/,awx/projects/,tools/docker,awx/settings/local_*.py,installer/openshift/settings.py,build/,installer/
|