You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am working on speeding up some CI runs and one tweak would be not load the pry gems for that environment. At the same time, I want them available for running tests locally. My current solution is to use an environment variable:
group :development, :test do
gem 'pry-byebug', require: !ENV['CI']
end
Is there a better way to do this?
The text was updated successfully, but these errors were encountered:
I am working on speeding up some CI runs and one tweak would be not load the pry gems for that environment. At the same time, I want them available for running tests locally. My current solution is to use an environment variable:
Is there a better way to do this?
The text was updated successfully, but these errors were encountered: