How to mark test passed/failed on LambdaTest with Python Unittest?

Is it possible mark a test passed/failed with Python Unittest?

Hi Brett,

You can mark the test as passed or failed by adding lambda-status hooks below:

For Passed Test:

browser.executeScript("lambda-status=passed");

For Failed Test:

driver.executeScript('lambda-status=failed');