diff options
author | Tim Smith <tsmith@chef.io> | 2018-06-20 10:36:34 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-06-27 11:40:00 -0700 |
commit | 6fbbeca577117dc8244a4d29e0c028590ef81bfb (patch) | |
tree | aa06492c2c8430dcb2deb6ea3959a8c19ec891c4 /.travis.yml | |
parent | 4b35ecd3bd8ef3c56fc75c7d0bffb440244b0e50 (diff) | |
download | chef-6fbbeca577117dc8244a4d29e0c028590ef81bfb.tar.gz |
Rename the kitchen base test suite to end-to-end
It's our end-to-end test according to the readme. This just aligns the recipe/suite names with that so it's a bit more obvious what we're doing here. This also removes sudo installs since I moved that all to dokken-images now.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/.travis.yml b/.travis.yml index 84d8c71543..40b2e7ddef 100644 --- a/.travis.yml +++ b/.travis.yml @@ -127,7 +127,7 @@ matrix: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - cd kitchen-tests script: - - bundle exec kitchen test base-amazonlinux-2 + - bundle exec kitchen test end-to-end-amazonlinux-2 after_failure: - cat .kitchen/logs/kitchen.log env: @@ -144,7 +144,7 @@ matrix: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - cd kitchen-tests script: - - bundle exec kitchen test base-amazonlinux + - bundle exec kitchen test end-to-end-amazonlinux after_failure: - cat .kitchen/logs/kitchen.log env: @@ -161,7 +161,7 @@ matrix: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - cd kitchen-tests script: - - bundle exec kitchen test base-ubuntu-1404 + - bundle exec kitchen test end-to-end-ubuntu-1404 after_failure: - cat .kitchen/logs/kitchen.log env: @@ -178,7 +178,7 @@ matrix: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - cd kitchen-tests script: - - bundle exec kitchen test base-ubuntu-1604 + - bundle exec kitchen test end-to-end-ubuntu-1604 after_failure: - cat .kitchen/logs/kitchen.log env: @@ -195,7 +195,7 @@ matrix: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - cd kitchen-tests script: - - bundle exec kitchen test base-ubuntu-1804 + - bundle exec kitchen test end-to-end-ubuntu-1804 after_failure: - cat .kitchen/logs/kitchen.log env: @@ -212,7 +212,7 @@ matrix: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - cd kitchen-tests script: - - bundle exec kitchen test base-debian-8 + - bundle exec kitchen test end-to-end-debian-8 after_failure: - cat .kitchen/logs/kitchen.log env: @@ -229,7 +229,7 @@ matrix: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - cd kitchen-tests script: - - bundle exec kitchen test base-debian-9 + - bundle exec kitchen test end-to-end-debian-9 after_failure: - cat .kitchen/logs/kitchen.log env: @@ -246,7 +246,7 @@ matrix: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - cd kitchen-tests script: - - bundle exec kitchen test base-centos-6 + - bundle exec kitchen test end-to-end-centos-6 after_failure: - cat .kitchen/logs/kitchen.log env: @@ -263,7 +263,7 @@ matrix: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - cd kitchen-tests script: - - bundle exec kitchen test base-centos-7 + - bundle exec kitchen test end-to-end-centos-7 after_failure: - cat .kitchen/logs/kitchen.log env: @@ -280,7 +280,7 @@ matrix: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - cd kitchen-tests script: - - bundle exec kitchen test base-fedora-latest + - bundle exec kitchen test end-to-end-fedora-latest after_failure: - cat .kitchen/logs/kitchen.log env: @@ -297,7 +297,7 @@ matrix: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - cd kitchen-tests script: - - bundle exec kitchen test base-opensuse-leap + - bundle exec kitchen test end-to-end-opensuse-leap after_failure: - cat .kitchen/logs/kitchen.log env: |