Files
wlan-testing/libs/testrails/reporting.py
shivamcandela b8253c98b2 test fixes
2021-06-04 15:31:47 +05:30

13 lines
236 B
Python

import allure
class Reporting:
def __init__(self):
self.rid = None
pass
def update_testrail(self, case_id=None, run_id=None, status_id=1, msg=None):
allure.attach(name=str(msg), body="")
pass