Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ group :development, :test do
gem 'annotate', '~> 3.2', '>= 3.0.3'
gem 'dotenv-rails', '~> 2.7.6'
gem 'factory_bot_rails', '~> 5.1', '>= 5.1.1'
gem 'parallel_tests', '~> 4.2'
gem 'pry-byebug', '~> 3.9', platform: :mri
gem 'pry-rails', '~> 0.3.9'
gem 'rspec_api_documentation', '~> 6.1.0'
Expand Down
3 changes: 3 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,8 @@ GEM
orm_adapter (0.5.0)
pagy (4.11.0)
parallel (1.22.1)
parallel_tests (4.2.1)
parallel
parser (3.1.2.1)
ast (~> 2.4.1)
pg (1.4.3)
Expand Down Expand Up @@ -501,6 +503,7 @@ DEPENDENCIES
listen (~> 3.2)
oj (~> 3.9, >= 3.9.2)
pagy (~> 4.0)
parallel_tests (~> 4.2)
pg (~> 1.1, >= 1.1.4)
pg_query (~> 4.2.1)
prosopite (~> 1.3.2)
Expand Down
2 changes: 1 addition & 1 deletion config/database.yml.example
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ development:

test:
<<: *default
database: sample_project_test
database: sample_project_test<%= ENV['TEST_ENV_NUMBER'] %>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why is this change in the db name?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@megatux this is part of adding this gem, and also we're going to merge this and other PRs into a release branch, so when we have the functionality working as expected we'll create a new PR to merge against main. That works for you?


production:
<<: *default
Expand Down