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
after small investigation, I found that I need to have a running PostgreSQL instance on my laptop.
Can we use docker and testcontainers here?
Its much simpler and does not require any local instances directly on laptop.
Testcontainer will handle that by running container you need (postgres 14 in this case), running integration tests and shutting down the container.
@h1alexbel you don't need to have a running instance. You just need PostgreSQL server to be installed on your laptop. Rake will start an instance of it and then, when all tests are finished, it will stop it.
It's a good idea about testcontainers, we can try it.
When I pulled a code, first thing I did was
$ bundle exec rake
after small investigation, I found that I need to have a running PostgreSQL instance on my laptop.
Can we use docker and testcontainers here?
Its much simpler and does not require any local instances directly on laptop.
Testcontainer will handle that by running container you need (postgres 14 in this case), running integration tests and shutting down the container.
@yegor256 WDYT?
The text was updated successfully, but these errors were encountered: