Run spec and web tests separately and allow web to fail

This commit is contained in:
Piotr Sarnacki 2012-12-11 21:30:12 +01:00
parent a4eec471d7
commit 6661934b07
2 changed files with 22 additions and 1 deletions

View File

@ -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:

9
script/ci Executable file
View File

@ -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