From fdd65bfb211fac08e14c81ca2ee599c52cd5d7ab Mon Sep 17 00:00:00 2001 From: Rohan Garg Date: Fri, 17 Mar 2017 13:31:19 +0100 Subject: [PATCH] Enforce basic pep8 checking --- .travis.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4023bf83c..80e45e944 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,10 @@ -language: cpp +language: + - cpp + - python + +python: + - 3.5 + sudo: required services: @@ -10,6 +16,8 @@ notifications: install: - docker build -t calamares . + - pip install pep8 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