summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorPedro Alvarez <pedro.alvarez@codethink.co.uk>2019-11-26 13:52:17 +0000
committerPedro Alvarez <pedro.alvarez@codethink.co.uk>2019-11-27 14:08:05 +0000
commitf060919e92308b70c5bb28398d2e71ee849da677 (patch)
tree1dc9eb6d247dd331ddb9a2ab7cc55b81d9858f73 /.gitlab-ci.yml
parenta44c6b4a5ddcc769eb7a6b2108b57df682753060 (diff)
downloadlorry-f060919e92308b70c5bb28398d2e71ee849da677.tar.gz
Migrate to Python 3
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2be9e7b..e682625 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,13 +2,15 @@ image: debian:stretch
before_script:
- apt-get update -y
-- apt-get install -y -qq python-dev python-pip
+- apt-get install -y -qq python3-dev python3-pip
# Deps for running tests
- apt-get install -y -qq cmdtest
# Deps to run lorry tests
- apt-get install -y -qq git bzr cvs mercurial subversion hg-fast-export git-svn git-cvs bzr-fastimport
+- pip3 install pyyaml
+- pip3 install https://gitlab.com/trovekube/cliapp/-/archive/cliapp-1.20180812.1/cliapp-cliapp-1.20180812.1.tar.gz
# Configure git and bzr to run tests
- git config --global user.email "jdoe@example.com"