From 6c565634faef98f75a5c20384ea0cee62559d815 Mon Sep 17 00:00:00 2001 From: Paul Sherwood Date: Sun, 13 Mar 2016 20:47:28 +0000 Subject: [PATCH] Add pep8 test --- .gitlab-ci.yml | 5 +++++ install.sh | 7 +------ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f0596cd..bb4746d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,12 +11,17 @@ cache: path: "$BASE" stages: +- pep8 - installation - cache_keys - build - test - deploy +check_pep8: + stage: pep8 + script: "pep8" + check_installation: stage: installation script: "python setup.py install ; ./ybd.py" diff --git a/install.sh b/install.sh index deff851..4b79f6f 100644 --- a/install.sh +++ b/install.sh @@ -1,9 +1,4 @@ -apt-get update -apt-get install build-essential python-dev gawk git m4 -wget https://bootstrap.pypa.io/get-pip.py -python get-pip.py -pip install fs pyyaml requests jsonschema bottle cherrypy riemann-client -pip install sandboxlib +pip install fs pep8 cd ..