0
votes
1answer
35 views

Rally Python Api: Set Author of a Defect Update

Is there a way for a defect to be updated with Pyral and show the author of the change to be another user other than the user id used to log into Rally? Here's what I've tried, but it doesn't work: ...
0
votes
1answer
47 views

Rally Python Api: Add discussion to defect

How can I create a discussion item for a Rally defect with Pyral? This is what I have so far: rally = Rally(server, user, password) rally.enableLogging('rallyConnection.log') ...
0
votes
1answer
44 views

How to create pyral configuration file in rally development?

I am trying to use python REST API to access the contents from Rally. In read me, they mentioned to use a configuration file for server name, user credentials, etc. Where can i create a configuration ...
1
vote
2answers
56 views

How to retrieve the latest modified tasks using REST API?

I am creating a integration tool to integrate with rally and my web application. I decided to use Python to run in my web-server to retrieve the contents from rally. In one of the scenario, I need to ...
1
vote
1answer
69 views

Rally pyral sdk error with a query with more than two terms. (Error parsing expression — expected “)” but saw “AND” instead.)

I am using pyral, the Rally python SDK, I format my query string with a tuple, but it appears that any time I have more than two terms it fails. Here is my test code: import pyral rally = ...
0
votes
1answer
62 views

pyral module got an unexpected keyword argument 'verify'

I am new to the pyral module. I tried the demo code and I cannot get past the call to Rally. rally = Rally(server, user, password, workspace=workspace, project=project) I also tried. rally = ...
1
vote
2answers
129 views

Preferred method to copy a defect using Rally REST API in Python

I'd like to be able to query Rally for an existing defect and then copy that defect changing only a couple of fields while maintaining all attachments. Is there a simple way to do this? I tried ...
1
vote
2answers
386 views

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

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, ...
2
votes
0answers
190 views

Copying Test Cases and Test Folder using Rally Python or Ruby API [closed]

Is it possible to do this: Copy a test folder with testcases to another new folder
1
vote
1answer
212 views

how to add steps to testcases in Rally using python toolkit API

I recently started playing with Rally python REST API I tried to create Test Cases, But the problem I have is, I am not sure how to Add steps and add content to those steps is there a JSON format for ...
0
votes
1answer
114 views

Adding Tasks to Rally via Pyral

I'm fairly new to Rally and have been testing it out. I've been looking at their python framework for working with their API. Unfortunately, within the documentation I cannot find a way to add tasks. ...
1
vote
1answer
307 views

Rally Python API

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 ...