| Branch | Status |
|---|---|
| main | |
| dev |
cargo buildVeriy the postgres database is running, then run the tests.
scripts/init_db.sh
cargo testHow to remove the test databases using psql
for dbname in $(psql -U postgres -c "copy (select datname from pg_database where datname like '%-%-%-%-%') to stdout"); do echo "$dbname"; psql -U postgres -c "drop database \"$dbname\""; done