From 977ddea4162363d2acd702aeab43d6cb24d2813a Mon Sep 17 00:00:00 2001 From: Martin Polreich Date: Wed, 24 Oct 2018 12:15:36 +0200 Subject: [PATCH] Freeze inspec version for salt-formulas tests - in inspec >= 3.0.0 there are changes in schema which require to have tests/integration dir to contain tests, otherwise fails - this is temporary workaround until we decide proper fix Change-Id: I95a1dd8e809ff23e9b620ed7556ee8f7f006be1e --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 8161fcc..038ae18 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,8 @@ install: gem 'test-kitchen' gem 'kitchen-docker' gem 'kitchen-inspec' - gem 'inspec' + gem 'inspec', '<3.0.0' + #Version was frozen, because of issues in the version of inspec >3.0.0 -- see https://mirantis.jira.com/browse/PROD-24324 for more info, '<3.0.0' gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git' - bundle install