Searched refs:requires_device_update (Results 1 – 5 of 5) sorted by relevance
65 def requires_device_update(self): member in TestRunnerInvocation67 return self._test_runner.requires_device_update(self._test_infos)
1200 requires_device_update = plan.requires_device_update()1203 if requires_device_update:1210 if not requires_device_update:1282 def requires_device_update(self) -> bool: member in TestExecutionPlan1376 def requires_device_update(self) -> bool: member in TestMappingExecutionPlan1450 def requires_device_update(self) -> bool: member in TestModuleExecutionPlan1478 return any(i.requires_device_update() for i in invocations)
191 def requires_device_update( member in AtestTradefedTestRunner196 requires_device_update = False199 requires_device_update |= test.requires_device_update()201 return requires_device_update1594 def requires_device_update(self) -> bool: member in Test1615 def requires_device_update(self): member in DeviceTest1692 def requires_device_update(self): member in DevicelessTest
1695 requires_device_update = runner.requires_device_update(test_infos)1697 self.assertTrue(requires_device_update)1713 requires_device_update = runner.requires_device_update(test_infos)1715 self.assertFalse(requires_device_update)1724 requires_device_update = runner.requires_device_update(test_infos)1726 self.assertTrue(requires_device_update)
113 def requires_device_update( member in TestRunnerBase