浏览代码

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

Change-Id: Iec74eed8bec2b9229348e28af73b27743686e8e0
pull/6/head
Martin Polreich 7 年前
父节点
当前提交
8b6f0effb6
共有 2 个文件被更改,包括 11 次插入3 次删除
  1. +6
    -0
      .kitchen.travis.yml
  2. +5
    -3
      .travis.yml

+ 6
- 0
.kitchen.travis.yml 查看文件

suites:

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

+ 5
- 3
.travis.yml 查看文件

- bundle install - bundle install


env: env:
- PLATFORM=trevorj/salty-whales:trusty
- PLATFORM=trevorj/salty-whales:xenial
- PLATFORM=trevorj/salty-whales:trusty SUITE=cluster
- PLATFORM=trevorj/salty-whales:xenial SUITE=cluster
- PLATFORM=trevorj/salty-whales:trusty SUITE=single
- PLATFORM=trevorj/salty-whales:xenial SUITE=single


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 test -t tests/integration
- KITCHEN_LOCAL_YAML=.kitchen.travis.yml bundle exec kitchen test -t tests/integration


notifications: notifications:
webhooks: webhooks:

正在加载...
取消
保存