diff options
author | Ryan Petrello <rpetrell@redhat.com> | 2021-03-19 17:44:51 +0100 |
---|---|---|
committer | Ryan Petrello <rpetrell@redhat.com> | 2021-03-23 14:39:58 +0100 |
commit | c2ef0a65002b4c945fedfefc121dbc0a0390894f (patch) | |
tree | 52ab6712c9673f16b3f6aa5213f565b0e4008863 /tox.ini | |
parent | Merge pull request #9655 from ansible/jakemcdermott-patch-changelog (diff) | |
download | awx-c2ef0a65002b4c945fedfefc121dbc0a0390894f.tar.xz awx-c2ef0a65002b4c945fedfefc121dbc0a0390894f.zip |
move code linting to a stricter pep8-esque auto-formatting tool, black
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,9 +1,11 @@ [testenv:linters] deps = make - flake8 + black yamllint allowlist_externals = make +setenv = + BLACK_ARGS = --check commands = - make flake8 + make black yamllint -s . |