debian-mirror-gitlab/debian/patches/Gemfile/0030-make-test-dependencies-conditional.patch
2023-06-20 11:34:45 +05:30

14 lines
383 B
Diff

Make test dependencies conditional so we can enable them when running autopkgtest
--- a/Gemfile
+++ b/Gemfile
@@ -447,7 +447,7 @@ group :development, :test, :omnibus do
gem 'license_finder', '~> 7.0', require: false
end
-group :test do
+if ENV["INCLUDE_TEST_DEPENDS"] == "true"
gem 'fuubar', '~> 2.2.0'
gem 'rspec-retry', '~> 0.6.2'
gem 'rspec_profiling', '~> 0.0.6'