2019-03-04 08:58:50 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
echo "building ui..."
|
|
|
|
./tools/build_ui.sh
|
|
|
|
|
2019-04-24 21:44:11 +02:00
|
|
|
echo "running unit tests..."
|
|
|
|
nosetests ./tests
|
|
|
|
|
2019-12-15 23:17:28 +01:00
|
|
|
echo "type checking..."
|
2019-12-16 00:59:18 +01:00
|
|
|
./tools/typecheck-setup.sh
|
2019-12-15 23:17:28 +01:00
|
|
|
./tools/typecheck.sh
|
|
|
|
|
2019-03-04 08:58:50 +01:00
|
|
|
echo "linting..."
|
|
|
|
./tools/lint.sh
|