From c2f76543e7742dc272fca95f52abf2550e37128c Mon Sep 17 00:00:00 2001 From: Hailee Kenney Date: Wed, 24 Sep 2014 15:43:58 -0700 Subject: [PATCH] (PDOC-7) Add .travis file for Travis CI support Since we want Travis CI to run spec tests for pull requests opened for puppet strings, add a .travis.yml file so that Travis CI can run spec tests. --- .travis.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..f73e076 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,17 @@ +language: ruby +bundler_args: --without development +script: "bundle exec rake spec SPEC_OPTS='--color --format documentation'" +notifications: + email: false +rvm: + - 1.9.3 + - 2.0.0 + - 2.1.0 + - ruby-head +env: + - PUPPET_VERSION=3.6.2 + - PUPPET_VERSION=3.7.1 +matrix: + fast_finish: true + allow_failures: + - rvm: ruby-head