From 9c3b1e6aa3d6af6fc8a9e3b24ba3ee00c5b75e36 Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Wed, 13 Jun 2018 10:50:03 -0700 Subject: [PATCH] fixing pip call in the yaml file --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5a726381..1cef16eb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,9 +2,6 @@ image: docker:latest services: - docker:dind -before_script: - - apk add --no-cache python3 - stages: - linting - deploy @@ -12,11 +9,14 @@ stages: linting: stage: linting before_script: + - apk add --no-cache python3 - pip3 install pylint script: - pylint -E app/*.py build_and_push_container: + before_script: + - apk add --no-cache python3 - pip3 install -r app/requirements.txt stage: deploy script: