Skip to content

Commit

Permalink
Coveralls fix attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
JBlackN committed Aug 7, 2015
1 parent 24bd5ec commit fcc6f64
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@ rvm:
- 2.2.2
before_install: gem install bundler -v 1.10.6
script:
- 'bundle exec rake test_with_coveralls'
- 'bundle exec rspec'
- 'bundle exec cucumber'
- 'bundle exec rake coveralls:push'
- 'bundle exec rubocop'
4 changes: 1 addition & 3 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,11 @@ require 'cucumber/rake/task'
require "rspec/core/rake_task"
require 'rubocop/rake_task'

Coveralls::RakeTask.new
Cucumber::Rake::Task.new(:features) do |t|
t.cucumber_opts = "features --format pretty"
end
RSpec::Core::RakeTask.new(:spec)
RuboCop::RakeTask.new

Coveralls::RakeTask.new
task :test_with_coveralls => [:spec, :features, 'coveralls:push']

task :default => :spec

0 comments on commit fcc6f64

Please sign in to comment.