diff mbox

[Branch,~linaro-validation/lava-dispatcher/trunk] Rev 214: Fix broken rc check

Message ID 20120130184517.29429.89943.launchpad@ackee.canonical.com
State Accepted
Headers show

Commit Message

Paul Larson Jan. 30, 2012, 6:45 p.m. UTC
------------------------------------------------------------
revno: 214
committer: Paul Larson <paul.larson@linaro.org>
branch nick: lava-dispatcher
timestamp: Mon 2012-01-30 12:42:45 -0600
message:
  Fix broken rc check
modified:
  lava_dispatcher/actions/lava-test.py


--
lp:lava-dispatcher
https://code.launchpad.net/~linaro-validation/lava-dispatcher/trunk

You are subscribed to branch lp:lava-dispatcher.
To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-dispatcher/trunk/+edit-subscription
diff mbox

Patch

=== modified file 'lava_dispatcher/actions/lava-test.py'
--- lava_dispatcher/actions/lava-test.py	2012-01-30 16:57:54 +0000
+++ lava_dispatcher/actions/lava-test.py	2012-01-30 18:42:45 +0000
@@ -43,8 +43,7 @@ 
     session.run('pip install -e ' + lava_test_url)
 
     #Test if lava-test installed
-    try:
-        rc = session.run('lava-test help', timeout=60)
+    rc = session.run('lava-test help', timeout=60)
     if rc != 0:
         raise CriticalError("lava-test deployment failed")