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: install:
- docker build -t calamares . - docker build -t calamares .
- pip install pep8 - pip install pycodestyle
script: 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" - 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