From 73b8fb07074078b67af7669c5817ed6488574b83 Mon Sep 17 00:00:00 2001 From: bom Date: Wed, 19 Jan 2022 17:23:10 +0100 Subject: [PATCH] changed tests from 0.13.4 to 1.1.3 --- .gitlab-ci.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9926e75..8ed2adf 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -29,21 +29,6 @@ pylint: - pylint -d C0301 python_terraform/*.py -test-0.13.4: - stage: test - script: - - export TFVER=0.13.4 - - export TFURL=https://releases.hashicorp.com/terraform/ - - TFURL+=$TFVER - - TFURL+="/terraform_" - - TFURL+=$TFVER - - TFURL+="_linux_amd64.zip" - - wget $TFURL -O terraform_bin.zip - - mkdir tf_bin - - unzip terraform_bin.zip -d tf_bin - - PATH=$PATH:$PWD/tf_bin - - pytest -v - test-0.13.7: stage: test script: @@ -73,3 +58,18 @@ test-1.0.8: - unzip terraform_bin.zip -d tf_bin - PATH=$PATH:$PWD/tf_bin - pytest -v + +test-1.1.3: + stage: test + script: + - export TFVER=1.1.3 + - export TFURL=https://releases.hashicorp.com/terraform/ + - TFURL+=$TFVER + - TFURL+="/terraform_" + - TFURL+=$TFVER + - TFURL+="_linux_amd64.zip" + - wget $TFURL -O terraform_bin.zip + - mkdir tf_bin + - unzip terraform_bin.zip -d tf_bin + - PATH=$PATH:$PWD/tf_bin + - pytest -v