#!/bin/sh

set -eo pipefail

black --check pytrate

python -W ignore::UserWarning:: -m flake8 --ignore=E501,F821,W503,E203

pytest pytrate/tests --disable-warnings --no-header -m "not slow"
