File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,6 @@ pip install -r requirements.txt
1010pip install coverage coveralls
1111
1212coverage run setup.py test # tests still to be implemented
13- coveralls
13+ coveralls || true
1414
1515./scripts/build.sh -d trusty -t $TRAVIS_COMMIT -n
Original file line number Diff line number Diff line change @@ -169,20 +169,18 @@ def remote_shutdown(self):
169169 reactor .stop ()
170170
171171
172- @defer .inlineCallbacks
173172def rpc (f , * args , ** kwargs ):
174173 d = rpc_factory .getRootObject ()
175174 d .addCallback (lambda obj : obj .callRemote (f , * args , ** kwargs ))
176- ret = yield d
177- defer .returnValue (ret )
175+ return d
178176
179177
180178def rpc_log (msg ):
181- rpc ("log_debug" , str (msg ))
179+ return rpc ("log_debug" , str (msg ))
182180
183181
184182def rpc_shutdown ():
185- rpc ("shutdown" )
183+ return rpc ("shutdown" )
186184
187185
188186class T2WPP (protocol .ProcessProtocol ):
You can’t perform that action at this time.
0 commit comments