From 6048bf41d530249c4517a6c138ead2b75ff2c28c Mon Sep 17 00:00:00 2001 From: jem Date: Fri, 15 Oct 2021 16:59:52 +0200 Subject: [PATCH] fix ci --- .gitlab-ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e60f430..c8f385e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,7 +2,7 @@ image: "python:3.8" before_script: - python --version - - pip install -r requirements.txt + - pip install . - pip install -r dev_requirements.txt stages: @@ -25,4 +25,5 @@ pytest: - wget $TFURL -O terraform_bin.zip - mkdir tf_bin - unzip terraform_bin.zip -d tf_bin - - PATH=$PATH:$PWD/tf_bin pytest -v + - PATH=$PATH:$PWD/tf_bin + - pytest -v