23 lines
606 B
Diff
23 lines
606 B
Diff
Make test dependencies conditional so we can enable them when running autopkgtest
|
|
|
|
--- a/Gemfile
|
|
+++ b/Gemfile
|
|
@@ -333,7 +333,7 @@
|
|
gem 'raindrops', '~> 0.18'
|
|
end
|
|
|
|
-group :development, :test do
|
|
+if ENV["INCLUDE_TEST_DEPENDS"] == "true"
|
|
gem 'bullet', '~> 6.0.2'
|
|
gem 'pry-byebug', '~> 3.5','>= 3.5.1', platform: :mri
|
|
gem 'pry-rails', '~> 0.3.9'
|
|
@@ -366,9 +366,7 @@
|
|
gem 'parallel', '~> 1.19', require: false
|
|
|
|
gem 'rblineprof', '~> 0.3.6', platform: :mri, require: false
|
|
-end
|
|
|
|
-group :test do
|
|
gem 'fuubar', '~> 2.2'
|
|
gem 'rspec-retry', '~> 0.6.1'
|
|
gem 'rspec_profiling', '~> 0.0.5'
|