mirror of
				https://github.com/Telecominfraproject/wlan-testing.git
				synced 2025-11-02 20:07:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			236 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			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
 |