Something went wrong. Try again.
Our Personal Data Server from scratch!
Something went wrong. Try again.
479 B · 21 lines
Shell
12345678910111213141516171819202122#!/usr/bin/env bashset -euo pipefailSCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"INFRA_SCRIPT="$SCRIPT_DIR/test-infra.sh"cleanup() { echo "" echo "Cleaning up test infrastructure..." "$INFRA_SCRIPT" stop}trap cleanup EXIT"$INFRA_SCRIPT" startsource "${TMPDIR:-/tmp}/tranquil_pds_test_infra.env"echo ""ulimit -n 65536
echo "Running tests..."echo ""cargo nextest run --workspace --exclude tranquil-store "$@"
echo ""echo "All tests passed."