Switch from pep8 to pycodestyle

Reason: pycodestyle is the successor of pep8, same team, same program
        different name
        https://github.com/PyCQA/pycodestyle
This commit is contained in:
Alf Gaida 2017-03-30 00:33:06 +02:00
parent 65b5d67a08
commit 6b1fe2da01

View File

@ -16,8 +16,8 @@ notifications:
install:
- docker build -t calamares .
- pip install pep8
- pip install pycodestyle
script:
- docker run -v $PWD:/build calamares bash -lc "cd /build && cmake -DWEBVIEW_FORCE_WEBKIT=1 -DKDE_INSTALL_USE_QT_SYS_PATHS=ON . && make -j2"
- pep8 $PWD
- pycodestyle $PWD