=== modified file 'doc/changes.rst'
@@ -9,6 +9,7 @@
* Fix problem when reporting failure messages that contain unicode
* Refactor click-through workaround, and add support for new omap3
hwpacks
+* fix lava-test installation detection
.. _version_0_4_5:
=== modified file 'lava_dispatcher/actions/lava-test.py'
@@ -44,11 +44,7 @@
#Test if lava-test installed
try:
- rc = session.run('lava-test help', response="list-test", timeout=60)
- except:
- tb = traceback.format_exc()
- client.sio.write(tb)
- raise CriticalError("lava-test deployment failed")
+ rc = session.run('lava-test help', timeout=60)
if rc != 0:
raise CriticalError("lava-test deployment failed")