Add fabfile.py with autotest task

This commit is contained in:
Stein Magnus Jodal 2012-12-13 02:17:29 +01:00
parent 0c6de005a0
commit eb717693f9

14
fabfile.py vendored Normal file
View File

@ -0,0 +1,14 @@
from fabric.api import local
def test():
local('nosetests tests/')
def autotest():
while True:
local('clear')
test()
local(
'inotifywait -q -e create -e modify -e delete '
'--exclude ".*\.(pyc|sw.)" -r mopidy/ tests/')