From 5498766c1eb2d917c0513f2b1f43484f133dc395 Mon Sep 17 00:00:00 2001 From: shockrah Date: Sat, 1 May 2021 15:46:17 -0700 Subject: [PATCH] + Adding in script to setup python package requirements * Also I've updated the docker image that this pipeline uses as it didn't have node and pip installed for some reason Link to relevant docker image: https://hub.docker.com/r/shockrah/fc-pipeline --- .gitlab-ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d5bef99..69bdef6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -202,6 +202,10 @@ full-mock-tests: - build-keys script: + - cd json-api/client-tests/ + - virtualenv . + - source bin/activate && pip install -r requirements.txt + - cd ../../ - bash scripts/build-db.sh - bash scripts/run-api-tests.sh