mopidy/fabfile.py
2012-12-13 02:17:43 +01:00

15 lines
279 B
Python

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/')