anki/.travis.sh

16 lines
192 B
Bash
Raw Normal View History

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..."
./tools/typecheck.sh
2019-03-04 08:58:50 +01:00
echo "linting..."
./tools/lint.sh