From 42c707b807a19038f9cb2e200521ec823fb91bbe Mon Sep 17 00:00:00 2001 From: Freddy Tan Date: Fri, 18 Nov 2016 17:24:03 +0800 Subject: [PATCH] fix terraform path on travis --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index a310b33..bb7c5db 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,8 +12,8 @@ python: before_install: 'sudo apt-get install unzip' before_script: - 'wget https://releases.hashicorp.com/terraform/0.7.11/terraform_0.7.11_linux_amd64.zip' - - 'unzip terraform_0.7.11_linux_amd64.zip' - - './terraform --version' + - 'unzip terraform_0.7.11_linux_amd64.zip -d test' + - './test/terraform --version' install: - "pip install -r test/requirements.txt"