How to List all test names in teamcity using REST API -
I'm trying to get a list of tests defined here. But can not get the list of examinations from the matamcity / app / rest / testecution? Locator = build type: (id: 1140)]
Is there another way to get them / list of failed tests?
I know that due to this question has long been past, but I err If you stumble upon, here it is if someone else has such a problem, then the answer.
If you understand the team policy document correctly then you can not use buildType with the test. The supported locator is actually the exact creation id:
But what you can do is get the list of builds for the build type:
http: // myTeamCity: 100 / http: // // myTeamCity: 100 / guestAuth / app / rest / testOccurrences? Locator = build: (id: 109)
Keeping in mind that you have written an integer in your example as an ID, maybe you already have the correct ID, but your Pass processing path is incorrect because it is not an id for buildType, but for build, because buildtips have wires for IDs
Comments
Post a Comment