Skip to content

Commit

Permalink
Don't load dotenv-rails in the test env
Browse files Browse the repository at this point in the history
  • Loading branch information
Dantemss committed Oct 23, 2024
1 parent bf6a783 commit 21bbba2
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ gem 'psych', '< 4'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', require: false

# Get env variables from .env file
gem 'dotenv-rails'

# Threaded application server
gem 'puma'

Expand Down Expand Up @@ -190,6 +187,11 @@ gem 'rack-cors'
# Data visualization and query
gem 'blazer'

group :development, :production do
# Get env variables from .env file
gem 'dotenv-rails'
end

group :development, :test do
# Run specs in parallel
gem 'parallel_tests'
Expand Down

0 comments on commit 21bbba2

Please sign in to comment.