Merge pull request #7863 from ryanpetrello/fix-tox

fix busted flake8 CI

Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
This commit is contained in:
softwarefactory-project-zuul[bot] 2020-08-10 16:53:08 +00:00 committed by GitHub
commit 395b338221
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 9 deletions

View File

@ -19,12 +19,3 @@ exclude=.tox,venv,awx/lib/site-packages,awx/plugins/inventory/ec2.py,awx/plugins
max-line-length=160
ignore=E201,E203,E221,E225,E231,E241,E251,E261,E265,E303,W291,W391,W293,E731,W504
exclude=.tox,venv,awx/lib/site-packages,awx/plugins/inventory,awx/ui,awx/api/urls.py,awx/main/migrations,awx/main/tests/data,node_modules/,awx/projects/,tools/docker,awx/settings/local_*.py,installer/openshift/settings.py,build/,installer/,awxkit/test,awx_collection/
[testenv:linters]
deps =
make
flake8
yamllint
commands =
make flake8
yamllint -s .

9
tox.ini Normal file
View File

@ -0,0 +1,9 @@
[testenv:linters]
deps =
make
flake8
yamllint
allowlist_externals = make
commands =
make flake8
yamllint -s .