Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kostya committed Sep 22, 2013
1 parent 0234cee commit 40c1d29
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -4,5 +4,7 @@ rvm:
- "1.9.3"
- "2.0"
script: COVA=1 bundle exec rake N=15
before_script:
- bundle exec rake remove_coverage
after_script:
- bundle exec rake coveralls:push
5 changes: 5 additions & 0 deletions Rakefile
Expand Up @@ -17,6 +17,11 @@ RSpec::Core::RakeTask.new(:spec) do |t|
t.verbose = false
end

task :remove_coverage do
require 'fileutils'
FileUtils.rm_rf(File.expand_path(File.join(File.dirname(__FILE__), %w{ coverage })))
end

task :env do
require 'bundler/setup'
require 'eye'
Expand Down

0 comments on commit 40c1d29

Please sign in to comment.