#!/usr/bin/env bash

#MISE description="Run the tests for this project"
#MISE sources=["Cargo.toml", "src/**/*.rs"]
#USAGE flag "--local-embeddings" help="Include local embedding support and auto-select the best platform feature"

set -euo pipefail

if [ "${usage_local_embeddings:-false}" = "true" ]; then
  mise run test:rust -- --local-embeddings
else
  mise run test:rust
fi
