mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-01 15:40:16 +00:00
10 lines
257 B
Bash
Executable File
10 lines
257 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
psql -U lemmy -d postgres -c "DROP DATABASE lemmy;"
|
|
psql -U lemmy -d postgres -c "CREATE DATABASE lemmy;"
|
|
|
|
export LEMMY_DATABASE_URL=postgres://lemmy:password@localhost:5432/lemmy
|
|
RUST_BACKTRACE=1 \
|
|
cargo test --workspace --no-fail-fast
|