Created
April 25, 2014 19:15
-
-
Save crywolfe/11300047 to your computer and use it in GitHub Desktop.
.travis.yml (use when setting up travis)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: ruby | |
rvm: | |
- 2.1.0 | |
before_script: | |
- "sh -e /etc/init.d/xvfb start" | |
- "export DISPLAY=:99.0" | |
- "export JASMINE_SPEC_FORMAT=documentation" | |
env: | |
- PG_USERNAME='postgres' | |
script: | |
- "bundle exec rake db:create" | |
- "bundle exec rake db:migrate RAILS_ENV=test" | |
- "bundle exec rake spec" | |
- "bundle exec rake jasmine:ci" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment