From c1f2902b218f411499f790ce53b010316790d9da Mon Sep 17 00:00:00 2001 From: Claudius Heine Date: Wed, 28 Jun 2017 14:48:43 +0200 Subject: [PATCH] travis: added codecheck.sh Added automatic execution of the checkcode.sh script by travis. Signed-off-by: Claudius Heine --- .travis.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.travis.yml b/.travis.yml index 5470292..2b4643c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,23 @@ +language: python + +python: + - "3.4" + - "3.5" + - "3.6" + sudo: required services: - docker +install: + # install kas to have all kas dependencies: + - pip install . + # checkcode dependencies: + - pip install pylint pep8 Pygments + script: + - scripts/checkcode.sh . - docker build -t kasproject/kas . after_success: