mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
12 lines
146 B
Bash
Executable file
12 lines
146 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo "running unit tests..."
|
|
nosetests ./tests
|
|
|
|
echo "building ui..."
|
|
./tools/build_ui.sh
|
|
|
|
echo "linting..."
|
|
./tools/lint.sh
|