2020-07-10 18:16:42 +00:00
|
|
|
#!/bin/sh
|
2020-12-11 14:56:20 +00:00
|
|
|
set -e
|
|
|
|
|
2021-02-04 16:34:58 +00:00
|
|
|
psql -U lemmy -d postgres -c "DROP DATABASE lemmy;"
|
|
|
|
psql -U lemmy -d postgres -c "CREATE DATABASE lemmy;"
|
|
|
|
|
2020-07-10 18:16:42 +00:00
|
|
|
export LEMMY_DATABASE_URL=postgres://lemmy:password@localhost:5432/lemmy
|
2021-03-02 12:57:06 +00:00
|
|
|
RUST_BACKTRACE=1 \
|
2021-03-01 17:46:56 +00:00
|
|
|
cargo test --workspace --no-fail-fast
|