calamares/.travis.yml
Alf Gaida 6b1fe2da01 Switch from pep8 to pycodestyle
Reason: pycodestyle is the successor of pep8, same team, same program
        different name
        https://github.com/PyCQA/pycodestyle
2017-03-30 00:33:06 +02:00

24 lines
386 B
YAML

language:
- cpp
- python
python:
- 3.5
sudo: required
services:
- docker
notifications:
irc:
- "chat.freenode.net#calamares"
install:
- docker build -t calamares .
- 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"
- pycodestyle $PWD