Browse Source

Merge "Update .travis.yml and .kitchen.yml files for parallel testing"

pull/56/head
Martin Polreich 7 years ago
parent
commit
9c43e4b744
2 changed files with 17 additions and 5 deletions
  1. +6
    -0
      .kitchen.travis.yml
  2. +11
    -5
      .travis.yml

+ 6
- 0
.kitchen.travis.yml View File

suites:

- name: <%= ENV['SUITE'] %>
provisioner:
pillars-from-files:
neutron.sls: tests/pillar/<%= ENV['SUITE'] %>.sls

+ 11
- 5
.travis.yml View File

- bundle install - bundle install


env: env:
- PLATFORM=trevorj/salty-whales:trusty
- PLATFORM=trevorj/salty-whales:xenial

- PLATFORM=trevorj/salty-whales:trusty SUITE=minion_default
- PLATFORM=trevorj/salty-whales:xenial SUITE=minion_default
- PLATFORM=trevorj/salty-whales:trusty SUITE=master_default
- PLATFORM=trevorj/salty-whales:xenial SUITE=master_default
- PLATFORM=trevorj/salty-whales:trusty SUITE=minion_default
- PLATFORM=trevorj/salty-whales:xenial SUITE=minion_default
- PLATFORM=trevorj/salty-whales:trusty SUITE=control_default
- PLATFORM=trevorj/salty-whales:xenial SUITE=control_default
- PLATFORM=trevorj/salty-whales:trusty SUITE=minion_multi_master_failover
- PLATFORM=trevorj/salty-whales:xenial SUITE=minion_multi_master_failover


before_script: before_script:
- set -o pipefail - set -o pipefail
- make test | tail - make test | tail


script: script:
- test ! -e .kitchen.yml || bundle exec kitchen converge || true
- test ! -e .kitchen.yml || bundle exec kitchen verify -t tests/integration
- KITCHEN_LOCAL_YAML=.kitchen.travis.yml bundle exec kitchen test -t tests/integration


notifications: notifications:
webhooks: webhooks:

Loading…
Cancel
Save