|
||||||||
|
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators. For more information on JIRA, see: http://www.atlassian.com/software/jira |
||||||||
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
For more options, visit https://groups.google.com/d/optout.

Hi Amit, I am after similar functionality as well.
i actually have fixed it in the code more according to my requirments
{ FindAllTestSetsUnderFolders(); }public override TestSuiteRunResults Run()
{
if (!Connected)
return null;
TestSuiteRunResults activeRunDesc = new TestSuiteRunResults();
//find all the testSets under if given some folders in our list
try
catch (Exception ex)
{ ConsoleWriter.WriteErrLine(string.Format(Resources.AlmRunnerErrorBadQcInstallation, ex.Message, ex.StackTrace)); return null; }//run all the TestSets
foreach (string testset in TestSets)
{
string testset1 = testset.TrimEnd("
".ToCharArray());
int pos = testset1.LastIndexOf('
{ var sTemp = tsName.Replace("%", ""); string value = System.Environment.GetEnvironmentVariable(sTemp.ToString(),EnvironmentVariableTarget.Machine); tsName = value; }');
string tsDir = "";
string tsName = testset1;
if (pos != -1)
{
tsDir = testset1.Substring(0, pos).Trim("
".ToCharArray());
tsName = testset1.Substring(pos, testset1.Length - pos).Trim("
".ToCharArray());
if (tsName.Contains('%'))
}
this bit divides them into two directory path being parameterized and the testset name being parameterized.
i couldnt build the plugin because my work proxy does not allow maven to be executed. hope this helps