#!/bin/sh
# Shared helper script for centralizing arguments and features.
# Callers can optionally pass test harness arguments to cargo like:
# run-cargo-tests --skip test_1

set -eu

cargo test \
    --all-targets \
    --offline \
    -- \
    "$@"
