Travis now back to basic rake task

This commit is contained in:
Priit Tark 2015-04-14 12:03:17 +03:00
parent 208ed47209
commit 0a47106c21
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ before_script:
- RAILS_ENV=test bundle exec rake db:seed
- RAILS_ENV=test bundle exec rake zonefile:replace_procedure
script:
- RAILS_ENV=test bundle exec rake spec:models
- RAILS_ENV=test bundle exec rake
cache: bundler
services:
- postgresql

View file

@ -15,7 +15,7 @@ begin
desc 'Run all but EPP specs'
RSpec::Core::RakeTask.new('test:other') do |t|
t.rspec_opts = '--tag ~epp'
t.rspec_opts = '--tag ~epp --tag ~feature'
end
desc 'Run all but EPP specs'