From 86f53ded2b6b43fd331d39f09b49805b00a1b9da Mon Sep 17 00:00:00 2001 From: Ewoud Kohl van Wijngaarden Date: Thu, 28 Nov 2024 17:15:44 +0100 Subject: [PATCH] Drop Jenkins integration in tests By using GitHub Actions we no longer need Jenkins. --- Gemfile | 1 - Rakefile | 11 ----------- 2 files changed, 12 deletions(-) diff --git a/Gemfile b/Gemfile index 6dcc942..8dac0bb 100644 --- a/Gemfile +++ b/Gemfile @@ -10,7 +10,6 @@ group :rubocop do end group :test do - gem 'ci_reporter_test_unit' gem 'mocha', '~> 1' gem 'rack-test' gem 'rake', '~> 13' diff --git a/Rakefile b/Rakefile index 670a49a..9377016 100644 --- a/Rakefile +++ b/Rakefile @@ -29,14 +29,3 @@ RuboCop::RakeTask.new(:rubocop) do |task| task.patterns = ['bin/foreman-node', 'lib/**/*.rb', 'test/**/*.rb'] task.fail_on_error = false end - -begin - require 'ci/reporter/rake/test_unit' -rescue LoadError - # test group not enabled -else - namespace :jenkins do - desc nil # No description means it's not listed in rake -T - task unit: ['ci:setup:testunit', :test] - end -end