#!/bin/sh
SELF=$(realpath "$0")
if [ -z "${KUBECONFIG}" ]; then
KUBECONFIG="$("${SELF%/*}"/start-k3d.sh)"
export KUBECONFIG
fi
cargo test "$@"