blob: 59f8e5039397a2ea5255d75bef6299cdfa240dd7 [file] [log] [blame]
Elena Ezhovaa3a43232017-06-02 17:53:00 +04001sudo: required
2services:
3 - docker
4
5install:
6 - pip install PyYAML
7 - pip install virtualenv
8 - |
9 test -e Gemfile || cat <<EOF > Gemfile
10 source 'https://rubygems.org'
11 gem 'rake'
12 gem 'test-kitchen'
13 gem 'kitchen-docker'
14 gem 'kitchen-inspec'
15 gem 'inspec'
16 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
17 - bundle install
18
19env:
Martin Polreichbcf13fc2017-08-29 12:01:29 +020020 - PLATFORM=trevorj/salty-whales:xenial SUITE=api_single
21 - PLATFORM=trevorj/salty-whales:xenial SUITE=api_cluster
22 - PLATFORM=trevorj/salty-whales:xenial SUITE=manager_single
Elena Ezhovaa3a43232017-06-02 17:53:00 +040023
24before_script:
25 - set -o pipefail
26 - make test | tail
27
28script:
Martin Polreichbcf13fc2017-08-29 12:01:29 +020029 - KITCHEN_LOCAL_YAML=.kitchen.travis.yml bundle exec kitchen test -t tests/integration
Elena Ezhovaa3a43232017-06-02 17:53:00 +040030
31notifications:
32 webhooks:
33 urls:
34 - https://webhooks.gitter.im/e/6123573504759330786b
35 on_success: change # options: [always|never|change] default: always
36 on_failure: never # options: [always|never|change] default: always
37 on_start: never # options: [always|never|change] default: always
38 on_cancel: never # options: [always|never|change] default: always
39 on_error: never # options: [always|never|change] default: always
40 email: false