summaryrefslogtreecommitdiff
path: root/check
blob: 10dadd5c94a5b3f3ae8c74b281da7419df1cd6bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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