diff --git a/.zuul.yaml b/.zuul.yaml new file mode 100644 index 0000000..1fd1fe4 --- /dev/null +++ b/.zuul.yaml @@ -0,0 +1,7 @@ +- project: + check: + jobs: + - openstack-tox-pep8 + gate: + jobs: + - openstack-tox-pep8 diff --git a/tox.ini b/tox.ini index 32b4f3e..7b1faa5 100644 --- a/tox.ini +++ b/tox.ini @@ -55,6 +55,8 @@ commands = python setup.py build_sphinx [flake8] exclude = .venv,.git,.tox,dist,*lib/python*,*egg,build,panel_template,dash_template,local_settings.py,*/local/*,*/test/test_plugins/*,.ropeproject,node_modules +# these are currently not passing, should be removed once code is changed +ignore = E121,E126,E226,F405,H102,H301,H306,H401,H405,H701,H702 max-complexity = 20 [hacking]