summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorPaul Sherwood <paul.sherwood@codethink.co.uk>2016-03-13 20:47:28 +0000
committerPaul Sherwood <paul.sherwood@codethink.co.uk>2016-03-13 20:54:53 +0000
commit6c565634faef98f75a5c20384ea0cee62559d815 (patch)
treea51fb498186664ef4712424241021d47ac207e7e /.gitlab-ci.yml
parentd2da5b8dbd12733307c3d158c56c67e8f6239fff (diff)
downloadybd-6c565634faef98f75a5c20384ea0cee62559d815.tar.gz
Add pep8 test
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml5
1 files changed, 5 insertions, 0 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"