Skip to content

Commit

Permalink
Disable gssencmode in the test env (#1277)
Browse files Browse the repository at this point in the history
Co-authored-by: Michael Volo <[email protected]>
  • Loading branch information
Dantemss and mwvolo authored Nov 6, 2024
1 parent 0b2e6b4 commit 895b793
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -225,9 +225,11 @@ group :development, :test do
# Codecov integration
gem 'codecov', require: false

# Speedup and run specs when files change
# Speedup Rails boot time
gem 'spring'
gem 'spring-commands-rspec'

# Run specs when files change
gem 'guard-rspec'
gem 'guard-livereload', require: false

Expand Down
1 change: 1 addition & 0 deletions config/database.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ test:
<<: *default
database: '<%= ENV['OXA_TEST_DB'] || 'ox_accounts_test' %><%=
"_#{ENV['TEST_ENV_NUMBER']}" if !ENV['TEST_ENV_NUMBER'].blank? %>'
<% if RUBY_PLATFORM =~ /darwin/ %>gssencmode: disable<% end %> # Prevent OS X OBJC crash
reaping_frequency: 0 # 0 == disabled - incompatible with our DatabaseCleaner config

production:
Expand Down

0 comments on commit 895b793

Please sign in to comment.