Skip to content

Commit

Permalink
Travis & Coveralls tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
JBlackN committed Aug 7, 2015
1 parent fcc6f64 commit 7a58ac1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ rvm:
- 2.2.2
before_install: gem install bundler -v 1.10.6
script:
- 'bundle exec rspec'
- 'bundle exec cucumber'
- 'bundle exec rake spec'
- 'bundle exec rake features'
- 'bundle exec rake coveralls:push'
- 'bundle exec rubocop'
- 'bundle exec rake rubocop'
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +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)
Coveralls::RakeTask.new
RuboCop::RakeTask.new

task :default => :spec
1 change: 1 addition & 0 deletions features/support/env.rb
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
require 'coveralls'
Coveralls.wear_merged!
SimpleCov.merge_timeout 3600
1 change: 1 addition & 0 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
require 'coveralls'
Coveralls.wear_merged!
SimpleCov.merge_timeout 3600

$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
require 'budik'

0 comments on commit 7a58ac1

Please sign in to comment.