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

Change-Id: Iecff72616ce940fcf82911b72d29c78ca211ecde
diff --git a/.travis.yml b/.travis.yml
index 72b4db9..fa7c5f9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -17,11 +17,23 @@
   - bundle install
 
 env:
-  - PLATFORM=trevorj/salty-whales:xenial
+  - PLATFORM=trevorj/salty-whales:xenial SUITE=client_compose
+  - PLATFORM=trevorj/salty-whales:xenial SUITE=client_container
+  - PLATFORM=trevorj/salty-whales:xenial SUITE=host_single
 
 before_script:
   - make test | tail
 
 script:
-  - test ! -e .kitchen.yml || bundle exec kitchen converge || true
-  - test ! -e .kitchen.yml || bundle exec kitchen verify
+  - KITCHEN_LOCAL_YAML=.kitchen.travis.yml bundle exec kitchen test -t tests/integration
+
+notifications:
+  webhooks:
+    urls:
+      - https://webhooks.gitter.im/e/6123573504759330786b
+    on_success: change  # options: [always|never|change] default: always
+    on_failure: never  # options: [always|never|change] default: always
+    on_start: never     # options: [always|never|change] default: always
+    on_cancel: never    # options: [always|never|change] default: always
+    on_error: never    # options: [always|never|change] default: always
+  email: false
\ No newline at end of file