Replies: 2 comments
-
The way the manual tests runs (and hence manual tests) are retrieved is by their association with the build run. agentApi.logDebug(`Get batch of manual test runs [${runSkip}] - [${runSkip + batchSize}]`);
var runs = await (testAPI.getTestRuns(
teamProject,
`vstfs:///Build/Build/${buildid}`,
null, // owner
null, // tmpiRunId
null, // planId
true, // include details
false, // shows both manual and automated
runSkip,
batchSize));
// this returns both manual and automated we need to filter
runs = runs.filter(run => run.isAutomated === false); This means that it is independent of the PR. So when you run the manual tests you must make sure they are associated with the correct build. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi , |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi I m @ragul5194,
We will generally attach the task id with the PR. So we used your release note template and took the parent only script ,its works good. but the testcases like tests and tested by will be mapped with parent(bug,pbl).
so it is possible to get the tests or tested by data which is associated with parent in release notes.
Beta Was this translation helpful? Give feedback.
All reactions