mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-31 22:18:59 +00:00
74a63804dc
* Crash if config fails to load * fix previous commit * Fix test failure due to config loading error * Adding test fix to drone. * Logging line. * Trying to fix drone 2 * Fixing deploy script. Co-authored-by: Dessalines <tyhou13@gmx.com>
12 lines
440 B
Bash
Executable file
12 lines
440 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
|
|
# tests are executed in working directory crates/api (or similar),
|
|
# so to load the config we need to traverse to the repo root
|
|
export LEMMY_CONFIG_LOCATION=../../config/config.hjson
|
|
RUST_BACKTRACE=1 \
|
|
cargo test --workspace --no-fail-fast
|