[autotest] Disable rpm action of power_RPMTtest
The action is replaced with dummy_PassServer util RPM works in destiny lab.
BUG=chromium:404421
TEST=local
run a test with rpm label, confirm reset runs dummy_PassServer.
Change-Id: I5e354d307a275c33679707d16fb044a560d86923
Reviewed-on: https://chromium-review.googlesource.com/225467
Reviewed-by: Dan Shi <dshi@chromium.org>
Commit-Queue: Dan Shi <dshi@chromium.org>
Tested-by: Dan Shi <dshi@chromium.org>
diff --git a/server/cros/provision.py b/server/cros/provision.py
index a60fa41..5d9e783 100644
--- a/server/cros/provision.py
+++ b/server/cros/provision.py
@@ -120,7 +120,16 @@
_actions = {
'modem_repair': 'cellular_StaleModemReboot',
- 'rpm': 'power_RPMTest',
+ # TODO(crbug.com/404421): set rpm action to power_RPMTest after the RPM
+ # is stable in lab (destiny). The power_RPMTest failure led to reset job
+ # failure and that left dut in Repair Failed. Since the test will fail
+ # anyway due to the destiny lab issue, and test retry will retry the
+ # test in another DUT.
+ # This change temporarily disable the RPM check in reset job.
+ # Another way to do this is to remove rpm dependency from tests' control
+ # file. That will involve changes on multiple control files. This one
+ # line change here is a simple temporary fix.
+ 'rpm': 'dummy_PassServer',
}
name = 'verify'