#!/usr/bin/env bash set -euo pipefail # Run all tests in the workspace export RUSTFLAGS=${RUSTFLAGS:-} export RUST_LOG=${RUST_LOG:-info} command -v cargo >/dev/null 2>&1 || { echo "cargo is required" >&2; exit 127; } exec cargo test --workspace