#!/bin/bash

set -e
# Can't run in parralel because of the shared docker
# instance.
. ./activate
pytest -v -s tests "$@"
# uv run pytest -n auto tests -v

