exclude debugger from CI builds

This commit is contained in:
Helge Rausch
2012-12-30 14:44:51 +01:00
parent a20245995f
commit 09677b9d60
2 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
rvm:
- 1.9.2
- 1.9.3
env: DB=postgres
env: DB=postgres CI=1
before_install:
- git clone git://github.com/redis/hiredis.git && cd hiredis && make && sudo make install && sudo ldconfig && cd ..
before_script:

View File

@@ -53,7 +53,7 @@ group :test do
gem 'shoulda-context', require: false
gem 'factory_girl'
gem 'mocha', require: false
gem 'debugger'
gem 'debugger' unless ENV['CI']
gem 'sunspot_test', git: 'git://github.com/tsujigiri/sunspot_test.git', branch: 'dirty_quickfix'
#gem "turn", "< 0.8.3" # truncates backtraces in the tests (bad)
end