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 ..