mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-17 01:44:00 +00:00
Nutomic
ad90cd77f9
* add private visibility * filter private communities in post_view.rs * also filter in comment_view * community follower state * remove unused method * sql fmt * add CommunityFollower.approved_by * implement api endpoints * api changes * only admins can create private community for now * add local api tests * fix api tests * follow remote private community * use authorized fetch for content in private community * federate community visibility * dont mark content in private community as public * expose ApprovalRequired in api * also check content fetchable for outbox/featured * address private community content to followers * implement reject activity * fix tests * add files * remove local api tests * dont use delay * is_new_instance * single query for is_new_instance * return subscribed type for pending follow * working * need to catch errors in waitUntil * clippy * fix query * lint for unused async * diesel.toml comment * add comment * avoid db reads * rename approved_by to approver_id * add helper * form init * list pending follows should return items for all communities * clippy * ci * fix down migration * fix api tests * references * rename * run git diff * ci * fix schema check * fix joins * ci * ci * skip_serializing_none * fix test --------- Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
29 lines
721 B
Bash
Executable file
29 lines
721 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
CWD="$(cd -P -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd -P)"
|
|
|
|
cd "$CWD/../"
|
|
|
|
PACKAGE="$1"
|
|
TEST="$2"
|
|
|
|
source scripts/start_dev_db.sh
|
|
|
|
# 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
|
|
export RUST_BACKTRACE=1
|
|
export LEMMY_TEST_FAST_FEDERATION=1 # by default, the persistent federation queue has delays in the scale of 30s-5min
|
|
|
|
if [ -n "$PACKAGE" ];
|
|
then
|
|
cargo test -p $PACKAGE --all-features --no-fail-fast $TEST
|
|
else
|
|
cargo test --workspace --all-features --no-fail-fast
|
|
fi
|
|
|
|
# Add this to do printlns: -- --nocapture
|
|
|
|
pg_ctl stop --silent
|
|
rm -rf $PGDATA
|