#!/bin/bash

set -euo pipefail
# Can't run in parralel because of the shared docker
# instance.
. ./activate
pytest -x -v -s --durations=0 tests/unit "$@"
# uv run pytest -n auto tests -v

