-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Introduced API for updating Build custom fields values #71
Conversation
Do you have the ticket link for the TestLink XML-RPC code, please @mazimkhan ? I'll keep an eye on that and prepare to merge/release after the PHP code has been updated. Thanks a lot for the pull request. |
Hi, yes it is here TestLinkOpenSourceTRMS/testlink-code#47 |
@kinow we have some execute time custom fields that we want to update via junit result seeker. I see Can you please help if you know a solution to update execute time custom fields. |
IIRC, in the tap-plugin I had to create a wrapper around junit-plugin objects (which were part of the core at that time), in order to add metadata collected from TAP resuls + YAMLish. Maybe that's one way to solve it. |
Thanks for your input @kinow. I will try a similar solution in testlink-plugin. |
TestLinkOpenSourceTRMS/testlink-code#47 has been merged so this should be good to go. |
All good to merge @mazimkhan ! Will merge it once the code has been released (will check if it's in 1.9.15). |
Awesome thanks! |
Not a problem. Just checked that it is not in TestLink 1.9.15. Let's wait for the next version to merge and release it :-) |
"tl.setTestCaseExecutionType"), GET_PROJECT_PLATFORMS( | ||
"tl.getProjectPlatforms"), REMOVE_PLATFORM_FROM_TEST_PLAN( | ||
"tl.removePlatformFromTestPlan"), ADD_PLATFORM_TO_TEST_PLAN( | ||
"tl.addPlatformToTestPlan"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yuck. I hadn't notice it got all that messed up. Thakns for fixing the formatting here.
Thanks! Preparing a 1.9.16-0 today, unless I find some issue, then will cut a release during the next week. |
New API
updateBuildCustomFields
for updating build custom field values.API signature:
Corresponding TestLink XML-RPC Code will be shared shortly.
Related TestLink PR #71