test more tf versions
This commit is contained in:
parent
de7feeee19
commit
fbc603d1f9
1 changed files with 31 additions and 1 deletions
|
@ -29,7 +29,7 @@ pylint:
|
||||||
- pylint -d C0301 python_terraform/*.py
|
- pylint -d C0301 python_terraform/*.py
|
||||||
|
|
||||||
|
|
||||||
pytest:
|
test-0.13.4:
|
||||||
stage: test
|
stage: test
|
||||||
script:
|
script:
|
||||||
- export TFVER=0.13.4
|
- export TFVER=0.13.4
|
||||||
|
@ -43,3 +43,33 @@ pytest:
|
||||||
- unzip terraform_bin.zip -d tf_bin
|
- unzip terraform_bin.zip -d tf_bin
|
||||||
- PATH=$PATH:$PWD/tf_bin
|
- PATH=$PATH:$PWD/tf_bin
|
||||||
- pytest -v
|
- pytest -v
|
||||||
|
|
||||||
|
test-0.13.7:
|
||||||
|
stage: test
|
||||||
|
script:
|
||||||
|
- export TFVER=0.13.7
|
||||||
|
- 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-1.0.8:
|
||||||
|
stage: test
|
||||||
|
script:
|
||||||
|
- export TFVER=1.0.8
|
||||||
|
- 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
|
||||||
|
|
Loading…
Reference in a new issue