From 2395ba92f3afe1452e878fbe78b4df12cc4c4f6e Mon Sep 17 00:00:00 2001 From: wakonig_k Date: Thu, 21 Jul 2022 12:28:51 +0000 Subject: [PATCH] added git; changed python image to 3.8 --- .gitlab-ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2ccb727..50f72f5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ # This file is a template, and might need editing before it works on your project. # Official language image. Look for the different tagged releases at: # https://hub.docker.com/r/library/python/tags/ -image: "python:3.9" +image: "python:3.8" #commands to run in the Docker container before starting each job. before_script: - pip install -r ./requirements.txt @@ -12,4 +12,5 @@ stages: pytest: stage: Test script: - - pytest -v ./tests \ No newline at end of file + - apk update; apk upgrade; apk add git + - pytest -v ./tests