]> Untitled Git - lemmy.git/blobdiff - scripts/test.sh
Bump version of dependency "webmention" (#3711)
[lemmy.git] / scripts / test.sh
index d6b87a6932155e8f1736cb08ed5bc4676afd9ab4..2a5efb30d10d5a825cc7ff8fa23e53107a39d744 100755 (executable)
@@ -1,13 +1,28 @@
-#!/bin/sh
+#!/usr/bin/env bash
 set -e
 
-psql -U lemmy -d postgres -c "DROP DATABASE lemmy;"
-psql -U lemmy -d postgres -c "CREATE DATABASE lemmy;"
+CWD="$(cd -P -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd -P)"
+
+cd $CWD/../
+
+PACKAGE="$1"
+echo "$PACKAGE"
+
+source scripts/start_dev_db.sh
 
-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 -p lemmy_db_views --no-fail-fast --all-features
+export RUST_BACKTRACE=1
+
+if [ -n "$PACKAGE" ];
+then
+  cargo test -p $PACKAGE --all-features --no-fail-fast
+else
+  cargo test --workspace --no-fail-fast
+fi
+
 # Add this to do printlns: -- --nocapture
+
+pg_ctl stop
+rm -rf $PGDATA