diff options
author | David Heinemeier Hansson <david@basecamp.com> | 2014-08-08 09:15:30 -0700 |
---|---|---|
committer | David Heinemeier Hansson <david@basecamp.com> | 2014-08-08 09:15:30 -0700 |
commit | 14f74a8331f94150dfee653224de8fc837797709 (patch) | |
tree | 5a4c62c14e115ff4ee05212664bb2ff5b8595c38 /.travis.yml | |
parent | 06ccd5f405a004275915102eb3ccc42b952ba549 (diff) | |
parent | 664546c208c406bba08b8eda2e6a600154d7232e (diff) | |
download | rails-14f74a8331f94150dfee653224de8fc837797709.tar.gz rails-14f74a8331f94150dfee653224de8fc837797709.tar.bz2 rails-14f74a8331f94150dfee653224de8fc837797709.zip |
Merge pull request #102 from cristianbica/integration_tests
Integration testing
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index cadc24d01f..fba12f9d0d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,10 @@ before_install: - travis_retry gem install bundler +- sudo apt-get update -qq +- sudo apt-get install beanstalkd +- echo "START=yes" | sudo tee -a /etc/default/beanstalkd +- sudo /etc/init.d/beanstalkd start + rvm: - 1.9.3 - 2.0.0 @@ -7,6 +12,8 @@ rvm: - ruby-head - rbx-2 - jruby +env: +- QC_DATABASE_URL="postgres://postgres@localhost/active_jobs_qc_int_test" QUE_DATABASE_URL="postgres://postgres@localhost/active_jobs_qc_int_test" matrix: allow_failures: - rvm: rbx-2 @@ -27,3 +34,6 @@ notifications: - secure: AgZwJA+9VdnWAw7QN9Z5s6RpQIzsEB0q7V+p3pCzXY45156WocL8iNQx+KnyOQ8jbRUt4L/XIOiZl5xHf4pHjXytHWHNhetAlVQP/hPeDcCSk/h0g5gqgf6QABdp38tBNaUq866bXHgCOZYPwwP9bypcmuv2SLyfIO+b/PBgqN0= services: - redis +- rabbitmq +addons: + postgresql: "9.3" |