mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
8 lines
134 B
Bash
Executable file
8 lines
134 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ -d 'locale' ]; then
|
|
dir=..
|
|
else
|
|
dir=.
|
|
fi
|
|
(cd $dir && nosetests -vs --with-coverage --cover-package=anki $@)
|