#!/bin/bash -eux

cd $(dirname $0)/..

mypy .
pytest
black --check .
isort --check .
flake8
