From b22ff6534ae238771369ee9d82dbbf52479a980d Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Wed, 9 Oct 2019 10:23:10 -0400 Subject: [PATCH] Install python before running tests --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index eac0b64..0836a4c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,7 @@ debian: stage: test image: debian:stable + before_script: + - apt-get -qq update && apt-get -qq install -y python script: - bash tests/run.sh break