We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35e3745 commit 89a7a8aCopy full SHA for 89a7a8a
hardware-testing/hardware_testing/production_qc/robot_assembly_qc_ot3/test_peripherals.py
@@ -249,8 +249,11 @@ def _get_user_confirmation(question: str) -> bool:
249
try:
250
# Assert there is no camera device at /dev/video2, the traditional device where the embedded camera appears
251
assert not os.path.exists("/dev/video2")
252
+ removed_result = CSVResult.PASS
253
except Exception as e:
254
print(f"Confirming camera not attached failed with the following error: {e}")
255
+ removed_result = CSVResult.FAIL
256
+ report(section, "camera-image", [removed_result])
257
else:
258
259
cam_pic_path = await _take_picture(api, report, section)
0 commit comments