I see INFO messages when I run my tests, and I thought I got rid of them by setting client_min_messages PGOPTION. Here is my command:
PGOPTIONS='--client-min-messages=warning' \ psql -h localhost \ -p 5432 \ -d my_db \ -U my_user \ --no-align \ --field-separator '|' \ --pset footer \ --quiet \ -v AUTOCOMMIT=off \ -X \ -v VERBOSITY=terse \ -v ON_ERROR_STOP=1 \ --pset pager=off \ -f tests/test.sql \ -o "$test_results"
Can someone advise me how to disable INFO messages?
source share