pyral

Add tag to a Rally Defect using python pyral

烂漫一生 提交于 2019-12-24 03:30:53
问题 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")

Rally Python API

喜你入骨 提交于 2019-12-13 16:22:19
问题 I am trying to get to my company's Rally subscription using the Python toolkit following the instructions at http://developer.rallydev.com/help/python-toolkit-rally-rest-api However, I am running into the following error. Traceback (most recent call last): File "test_prog.py", line 12, in rally = Rally(server, user, password, workspace=workspace, project=project) File "C:\Python27\lib\site-packages\pyral\restapi.py", line 184, in init self.contextHelper.check(self.server) File "C:\Python27

Rally host is non-existent or unreachable via pyral

假装没事ソ 提交于 2019-12-13 05:07:29
问题 I am trying to call rally server simply using below: rally = Rally(server, user, password, workspace=workspace, project=project) But it is giving below error: Traceback (most recent call last): File "testprint.py", line 20, in <module> rally = Rally(server, user=user, password=password, workspace=workspace, project=project) File "C:\RallyRestToolkitForPython-master\pyral\restapi.py", line 259, in __init__ self.contextHelper.check(self.server, wksp, proj, self.isolated_workspace) File "C:

Rally APIs: How to copy Test Folder and member Test Cases

时间秒杀一切 提交于 2019-12-02 17:43:15
问题 This question was asked by a different user earlier: Copying Test Cases and Test Folder using Rally Python or Ruby API [closed] but closed by moderators as being an overly broad question. However, given the inability to copy Test Folders and their member Test Cases within the Rally UI, this is a common need for Rally Users. Thus - I'll re-pose the question, hopefully with enough detail to stand as a valid question. I'll also re-post the answers that I developed for the original question.

Rally APIs: How to copy Test Folder and member Test Cases

吃可爱长大的小学妹 提交于 2019-12-02 11:56:27
This question was asked by a different user earlier: Copying Test Cases and Test Folder using Rally Python or Ruby API [closed] but closed by moderators as being an overly broad question. However, given the inability to copy Test Folders and their member Test Cases within the Rally UI , this is a common need for Rally Users. Thus - I'll re-pose the question, hopefully with enough detail to stand as a valid question. I'll also re-post the answers that I developed for the original question. Question: As a Rally user and developer in the Rally Python and Ruby REST APIs: how can I leverage the