From 227c43c81e22a9309caf85bfd46ac548558cb2c2 Mon Sep 17 00:00:00 2001 From: Danielle McLean Date: Mon, 26 Feb 2018 12:17:57 +1100 Subject: [PATCH] Switch to the python:3.6 image for CI, to make sure we get Python 3.6 --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 699a3ab..9dfc958 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ +image: python:3.6 +before_script: + - pip install pipenv + - pipenv install test: script: - - apt-get update -qy - - apt-get install -y python-dev python-pip - - pip install pipenv - - pipenv install - pipenv run pytest