Don't exit autotest if a test fails

This commit is contained in:
Stein Magnus Jodal 2013-01-06 21:33:01 +01:00
parent 358de3b088
commit 65bab05ce0

5
fabfile.py vendored
View File

@ -1,4 +1,4 @@
from fabric.api import local
from fabric.api import local, settings
def test(path=None):
@ -9,7 +9,8 @@ def test(path=None):
def autotest(path=None):
while True:
local('clear')
test(path)
with settings(warn_only=True):
test(path)
local(
'inotifywait -q -e create -e modify -e delete '
'--exclude ".*\.(pyc|sw.)" -r mopidy/ tests/')