#!/bin/sh

set -eo pipefail

uv run --extra dev black --check pytrate

uv run --extra dev python -W ignore::UserWarning:: -m flake8 pytrate --ignore=E501,F821,W503,E203

uv run --extra dev pytest pytrate/tests --disable-warnings --no-header -m "not slow"
