From 08e4930a522e821c96dbd2da173df2800aa488f5 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Wed, 9 Oct 2019 10:29:36 -0400 Subject: [PATCH] Install python-yaml through pip (to get the latest version) --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 21e7fea..fb6e7a9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,6 +2,7 @@ debian: stage: test image: debian:stable before_script: - - apt-get -qq update && apt-get -qq install -y python python-yaml + - apt-get -qq update && apt-get -qq install -y python python-pip + - pip install PyYAML script: - bash tests/run.sh break