Skip to content

Commit

Permalink
Abandon ci_reporter dependency
Browse files Browse the repository at this point in the history
We no longer run Ruby tests on Jenkins and thus there is no point in
depending on ci_reporter anymore.
  • Loading branch information
p0deje committed May 17, 2017
1 parent b05e2f8 commit 18d2be0
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 6 deletions.
4 changes: 1 addition & 3 deletions rake-tasks/crazy_fun/mappings/ruby.rb
Original file line number Diff line number Diff line change
Expand Up @@ -101,12 +101,10 @@ def handle(_fun, dir, args)
ENV['WD_SPEC_DRIVER'] = args[:name].tr('-', '_')
end

ENV['CI_REPORTS'] = "build/test_logs"

ruby :include => args[:include],
:require => args[:require],
:command => args[:command],
:args => %w[--format CI::Reporter::RSpec --format doc --color] + (!!ENV['example'] ? ['--example', ENV['example']] : []),
:args => %w[--format doc --color] + (!!ENV['example'] ? ['--example', ENV['example']] : []),
:debug => !!ENV['log'],
:files => args[:srcs],
:gemfile => "build/rb/Gemfile"
Expand Down
1 change: 0 additions & 1 deletion rb/selenium-webdriver.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ HTML of the application.'

s.add_development_dependency 'rspec', ['~> 3.0']
s.add_development_dependency 'rack', ['~> 1.0']
s.add_development_dependency 'ci_reporter', ['~> 1.6', '>= 1.6.2']
s.add_development_dependency 'webmock', ['~> 2.0']
s.add_development_dependency 'yard', ['~> 0.8.7']
end
1 change: 0 additions & 1 deletion rb/spec/integration/selenium/webdriver/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
require 'rubygems'
require 'time'
require 'rspec'
require 'ci/reporter/rspec'

require 'selenium-webdriver'
require_relative 'spec_support'
Expand Down
1 change: 0 additions & 1 deletion rb/spec/unit/selenium/webdriver/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
require 'rubygems'
require 'time'
require 'rspec'
require 'ci/reporter/rspec'
require 'webmock/rspec'
require 'selenium-webdriver'
require 'securerandom'
Expand Down

0 comments on commit 18d2be0

Please sign in to comment.