b88de95cd8
the PyQt5-stubs package that's floating around depends on an old Qt, and throws a bunch of errors
17 lines
219 B
Bash
Executable File
17 lines
219 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo "building ui..."
|
|
./tools/build_ui.sh
|
|
|
|
echo "running unit tests..."
|
|
nosetests ./tests
|
|
|
|
echo "type checking..."
|
|
./tools/typecheck-setup.sh
|
|
./tools/typecheck.sh
|
|
|
|
echo "linting..."
|
|
./tools/lint.sh
|