#!/bin/sh
#
# Run unit and integration tests.

set -eu

python3 -m unittest discover -p '*tests.py'

./cmdtest echo-tests

./cmdtest sort-tests

./cmdtest fail-tests && echo "fail-tests did not fail!" && exit 1

./cmdtest yarn.tests
