How to find rally workspace and project name for pyral connection

431 Views Asked by At

How to find workspace and project name in rally for pyral arguments

Pyral documentation was not clear

import sys
from pyral import Rally, rallyWorkset
server = "rally1.rallydev.com"
user = "xxx"
password = "zzz"
workspace = ""
project = ""
rally = Rally(server, user, password, workspace=workspace, project=project)
1

There are 1 best solutions below

0
user2738882 On BEST ANSWER

The easiest way to find it out to login to Rally and check it in UI: enter image description here

Just enter arguments as it is:

rally = Rally(server, user, password, workspace="My WorkSpace", project="Root Project")