From 6661934b07810f3b75c635837f00bf66a21e2490 Mon Sep 17 00:00:00 2001 From: Piotr Sarnacki Date: Tue, 11 Dec 2012 21:30:12 +0100 Subject: [PATCH] Run spec and web tests separately and allow web to fail --- .travis.yml | 14 +++++++++++++- script/ci | 9 +++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100755 script/ci diff --git a/.travis.yml b/.travis.yml index de6b82f6..8bc47a86 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,21 @@ language: ruby rvm: - 1.9.3 +before_install: + - wget http://phantomjs.googlecode.com/files/phantomjs-1.7.0-linux-i686.tar.bz2 + - tar -xf phantomjs-1.7.0-linux-i686.tar.bz2 + - sudo rm -rf /usr/local/phantomjs + - sudo mv phantomjs-1.7.0-linux-i686 /usr/local/phantomjs before_script: - bundle exec rakep -script: "bundle exec rspec spec" +env: + - "TEST_SUITE=spec" + - "TEST_SUITE=ember" +script: "script/ci" + +allow_failures: + - env: "TEST_SUITE=ember" + notifications: irc: "irc.freenode.org#travis" campfire: diff --git a/script/ci b/script/ci new file mode 100755 index 00000000..745634bb --- /dev/null +++ b/script/ci @@ -0,0 +1,9 @@ +#!/bin/sh + +if [ "$TEST_SUITE" == "spec" ]; then + bundle exec rspec spec +elif [ "$TEST_SUITE" == "ember" ]; then + bundle exec rackup -s puma -p 5000 -D + sleep 3 + ./run_jasmine.coffee http://localhost:5000/spec.html +fi