SAnCherepan
SAnCherepan
@cmedcoff, `changeset_obj = Changeset(client, changeset_relation)` should work. Try it out and let me know if it works out for you.
Seems to work within the [get_workitems] method (https://github.com/devopshq/tfs/blob/master/tfs/connection.py#L74). ToDo: add fields support for WIQL.
AFAIK, project is not required for retrieving work items. Try the link you provided in your web browser and see if you get JSON data or 401 error, To help...
>Also, when I paste the url to the web browser the following error is displayed - "Work item 10 does not exist, or you do not have permissions to read...
@valicherlasmk 1. What version of TFS do you use? 2. What kind of credentials do you supply: login+password or token?
@valicherlasmk, unfortunately I do not have a TFS2018 instance at hand to test that auth method myself. Could you please share a small code sample that reproduces your issue? Keep...
@LakshmiAntin, this line is used to create a `WorkItem` instance from a raw JSON that you would get from via `client.rest_client.send_post`. Make sure you have imported the library first: `from...
@LakshmiAntin, PATCH-requests are used to modify existing work items. POST-requests are used to create new work items. If your task at hand is to modify already existing test cases, you...
I will ask just in case: have you tried updating the web page after recieving positive response from patch? Also try to get test case via `client.get_workitem(XXXXX)` after patching and...
Try `print(workitem['Microsoft.VSTS.TCM.Steps'])` or try looking for values in debugger if you have the opportunity.