mirror of
https://github.com/ankitects/anki.git
synced 2025-11-17 18:17:12 -05:00
- 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
184 B
Bash
Executable file
13 lines
184 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
|