diff options
author | Ryan Petrello <rpetrell@redhat.com> | 2020-08-10 18:22:31 +0200 |
---|---|---|
committer | Ryan Petrello <rpetrell@redhat.com> | 2020-08-10 18:26:12 +0200 |
commit | 32542021c64de231d7c2a22654b479dc98e47d65 (patch) | |
tree | fd67fdb5d67f581e4e5b53088e1b61a6e812fa70 | |
parent | Merge pull request #7840 from beeankha/credential_input_idempotency (diff) | |
download | awx-32542021c64de231d7c2a22654b479dc98e47d65.tar.xz awx-32542021c64de231d7c2a22654b479dc98e47d65.zip |
fix busted flake8 CI
-rwxr-xr-x | setup.cfg | 9 | ||||
-rw-r--r-- | tox.ini | 9 |
2 files changed, 9 insertions, 9 deletions
@@ -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 . diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000000..30a245409f --- /dev/null +++ b/tox.ini @@ -0,0 +1,9 @@ +[testenv:linters] +deps = + make + flake8 + yamllint +allowlist_externals = make +commands = + make flake8 + yamllint -s . |