We have two tests that install PGRX. One of them checked for and deleted the shared object library, which could stomp on the other test!
So use the serial_test crate to force those two tests to run serial relative to one another. Then make sure both tests delete the shared object file if it exists, just to be sure that CREATE EXTENSION works for both.
We have two tests that install PGRX. One of them checked for and deleted the shared object library, which could stomp on the other test!
So use the serial_test crate to force those two tests to run serial relative to one another. Then make sure both tests delete the shared object file if it exists, just to be sure that
CREATE EXTENSION
works for both.