Add tag to a Rally Defect using python pyral
问题 I am trying to create Rally defect using pyral python package. Need to add a tag "#TestTag2". Is there a way to add Tag at the time defect is created? I am trying to add tag after the defect is created. But getting following error - info = {"Workspace": "/workspace/123", "Project": "/project/123", "Name": "Test Defect", "Description": "Test Defect details", "Owner": "/user/123", "ScheduleState": "Defined", } try: defect = rally.create('Defect', info ) print ("Rally Defect Opened - {0} \n")