rally

How can I get a list of all the projects in our Rally instance via the REST API?

让人想犯罪 __ 提交于 2019-12-06 01:59:08
How can I query our Rally instance for all of our available projects? Output from REST call https://rally1.rallydev.com/slm/webservice/1.29/subscription.js?fetch=Workspaces,Name,Projects&pretty=true ... "Workspaces": [ { "_rallyAPIMajor": "1", "_rallyAPIMinor": "29", "_ref": "https://rally1.rallydev.com/slm/webservice/1.29/workspace/1376977801.js", "_objectVersion": "10", "_refObjectName": "Workspace 1", "Name": "Workspace 1", "Projects": [ { "_rallyAPIMajor": "1", "_rallyAPIMinor": "29", "_ref": "https://rally1.rallydev.com/slm/webservice/1.29/project/2510231094.js", "_objectVersion": "3", "

How to add Tags to a TestCase in Rally using Rally's JAVA API?

旧街凉风 提交于 2019-12-05 16:32:31
I have been struggling with adding a tag to a testcase in Rally. The tag is already present in the Tags collection. But I cannot add it to a testcase. Can some provide an example about how to do this? Thanks a lot. Here's an example of how to do this - the example shows both adding Tags to an existing Test Case, as well as creating a new Test Case and adding Tags to the new one. public class RestExample_AddTagsToTestCase { public static void main(String[] args) throws URISyntaxException, IOException { // Create and configure a new instance of RallyRestApi // Connection parameters String

Rally grid color rows based on model

我只是一个虾纸丫 提交于 2019-12-04 05:43:29
问题 I have a rallygrid that is configured to display two models: PortfolioItem/Feature and PortfolioItem/Rollup. I want to color them in the grid to differentiate them. I am not garunteed that they will alternate in the grid, or anything like that. I just want to apply a subtle color to the rollups to differentiate them visually. Can anyone think of an easy way to achieve this? I have tried: viewConfig: { getRowClass: function(record, index, rowParams, store) { console.log('record',record); //

Problems with jslint-v8 Ruby gem installation on Windows7 64-bit

淺唱寂寞╮ 提交于 2019-12-04 01:46:40
问题 There is a problem during Rally App SDK 2.0p environment setup on Windows 7 (64-bit). I have installed Ruby 1.8.7-p358 from rubyinstaller.org and managed to install rake Ruby gem. But I have problems installing jslint-v8 gem. It has dependencies on therubyracer and libv8 gems which need to be built using Ruby DevKit. During the installation I got the following error: C:\ruby> gem install jslint-v8 Temporarily enhancing PATH to include DevKit... Building native extensions. This could take a

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 Ruby toolkit: how to get URL of Portfolio Item's state?

别说谁变了你拦得住时间么 提交于 2019-12-02 16:24:35
问题 Is there an example in Ruby using rally_api how to set State of a feature as mentioned here? Specifically, is there a way to query the ObjectID or the fully qualified path of state to use "State" => "Developing" instead of "State" => "/state/<ObjectID>" 回答1: It is possible to query State, create a hash, and populate the hash with the query results, where State Name is the key and State _ref is the value: state_results.each do |s| s.read state_hash[s["Name"]] = s["_ref"] end Then we can update

Velocity Chart in Rally [closed]

徘徊边缘 提交于 2019-12-02 15:40:47
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 2 years ago . I am working on a project to pull out data from rally and create a velocity chart. I understand the REST Web Service APIs to use are Defects, Iteration, Hierarchical requirement and Iteration cumulative flow data. How are the calculations are done to calculate the velocity per

Data for calculating Vellocity Chart in Rally [duplicate]

可紊 提交于 2019-12-02 14:56:36
问题 This question already has an answer here : Velocity Chart in Rally [closed] (1 answer) Closed 6 years ago . I was working on a project to pull out data from rally and create a vellocity chart. I understand the REST Web Service APIs to use are Defects, Iteration,Hierarchical requirement and Iterationcumilativeflow data. But can you please tell me how the actual calcualtions are done to calculate the velocity per iteration for a particular project. What all data are required and how it can be

Rally grid with custom column renderer sort

北城以北 提交于 2019-12-02 13:04:34
问题 Background When I try to sort by a column that I have used a custom renderer for, nothing happens - it changes the sort from ASC to DESC and back and forth but the order of the data never changes. I am assuming this is because there is not definition of how to sort the data that I manipulated with a custom renderer, but I cannot seem to find a way to add a sorter or sorting function to the column. Goal I am making a grid that I want to sort by the Parent column. I want to sort it such that

Data for calculating Vellocity Chart in Rally [duplicate]

孤街浪徒 提交于 2019-12-02 12:36:50
This question already has an answer here: Velocity Chart in Rally [closed] 1 answer I was working on a project to pull out data from rally and create a vellocity chart. I understand the REST Web Service APIs to use are Defects, Iteration,Hierarchical requirement and Iterationcumilativeflow data. But can you please tell me how the actual calcualtions are done to calculate the velocity per iteration for a particular project. What all data are required and how it can be achieved. Right now im able to pull planestimate of all accepted user stories and total plan estimate. amcolosk Seems to be a