mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04: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
12 lines
146 B
Bash
Executable file
12 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
|