Aki Lan
Aki Lan

Reputation: 97

How to find rally workspace and project name for pyral connection

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)

Upvotes: 1

Views: 502

Answers (1)

user2738882
user2738882

Reputation: 1190

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")

Upvotes: 1

Related Questions