diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2016-05-12 09:11:14 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2016-05-12 09:11:14 -0700 |
commit | 70e4bd2899da946d4bf0e7450c890ae28e76edbb (patch) | |
tree | 80c14ba472fa8df52a0a6882b2d88118a02c555f /.travis.yml | |
parent | d77f4ae08963336e65314f22fe0d8f9e01ca1fd0 (diff) | |
download | chef-70e4bd2899da946d4bf0e7450c890ae28e76edbb.tar.gz |
fixing nits from PRlcg/kitchen-tests2
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index ac81f30aa4..2416a064f3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -123,12 +123,11 @@ matrix: before_script: - cd kitchen-tests script: - # FIXME: we should fix centos-6 against AWS and then enable it here - - if [ "$TRAVIS_SECURE_ENV_VARS" = "true" ]; then bundle exec kitchen test ubuntu-1404 -l debug; fi + - if [ "$TRAVIS_SECURE_ENV_VARS" = "true" ]; then bundle exec kitchen test ubuntu-1404; fi after_failure: - cat .kitchen/logs/kitchen.log after_script: - - if [ "$TRAVIS_SECURE_ENV_VARS" = "true" ]; then bundle exec kitchen destroy ubuntu-1404 -l debug; fi + - if [ "$TRAVIS_SECURE_ENV_VARS" = "true" ]; then bundle exec kitchen destroy ubuntu-1404; fi env: - UBUNTU=1 - KITCHEN_YAML=.kitchen.travis.yml @@ -174,7 +173,6 @@ matrix: before_script: - cd kitchen-tests script: - # FIXME: we should fix centos-6 against AWS and then enable it here - if [ "$TRAVIS_SECURE_ENV_VARS" = "true" ]; then bundle exec kitchen test centos-6; fi after_failure: - cat .kitchen/logs/kitchen.log |