diff options
author | Victor Shyba <victor1984@riseup.net> | 2017-10-25 13:23:18 -0300 |
---|---|---|
committer | Victor Shyba <victor1984@riseup.net> | 2017-10-27 16:01:48 -0300 |
commit | 3230c9388729ae784c05575a2021c9d0995faa13 (patch) | |
tree | db04fc935e5c158b39a2b0b656c5ef4d62991cb3 | |
parent | ed48667738335c0f54f0e522c684231f2b740403 (diff) |
[ci] pep8 got renamed to pycodestyle
see: https://github.com/PyCQA/pycodestyle/issues/466
-rw-r--r-- | setup.cfg | 2 | ||||
-rw-r--r-- | tox.ini | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -1,7 +1,7 @@ [aliases] test = trial -[pep8] +[pycodestyle] exclude = versioneer.py,_version.py,*.egg,build,docs,scripts,ddocs.py,.tox ignore = F812,E731 @@ -61,10 +61,10 @@ install_command = pip3 install {opts} {packages} [testenv:code-check] deps = - pep8 + pycodestyle flake8 commands = - pep8 + pycodestyle flake8 [testenv:e2e] |