65c802b69e
- python 3.6 chokes on the pyqt .pyi files - need to check unit tests on 3.6 as well, as anki/ must run on 3.6
13 lines
146 B
Bash
Executable File
13 lines
146 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo "building ui..."
|
|
./tools/build_ui.sh
|
|
|
|
echo "running unit tests..."
|
|
nosetests ./tests
|
|
|
|
echo "linting..."
|
|
./tools/lint.sh
|