#!/bin/bash

set -e

# run pytest with args set
echo 'Running tests...'
uv run pytest $TEST_ARGS tests/

echo 'Done!'
