add psql command line tool to binaries
Flyway and Liquibase allow running schema migrations through psql.
If the migrations used to setup the test environment rely on being run with psql using embedded-postgres gets a bit tricky.
To support such environments it would be helpful if the embedded binaries also contained psql.
Could you please refer me to the official documentation where this feature is described in more detail? I've never heard of such functionality.
In Liquibase it's called "native executors":
https://docs.liquibase.com/liquibase-pro/native-executors/home.html
In Flyway it's usable when using the "Script migrations" (which in turn can use psql)
https://documentation.red-gate.com/flyway/flyway-concepts/migrations/script-migrations
Ok, great, thank you for the info.