-
Notifications
You must be signed in to change notification settings - Fork 84
Get test result for a specific test case #19
Comments
There's an endpoint for it, so there will be a Python API for it as well. |
You're right. That didn't exist in the API v4.1, so now we wait. |
@pbissert Is this what you are looking for The API is there in 4.1, it is just not documented on the site. |
@tedchamb Thanks for pointing that out. Let me see if I can get it to work. Really I'm just trying to get the latest outcome for a given test case. It seems like the path to get there is to loop through all run ids (get_test_runs) loop through the test results for an iterations run id, then check the test case.
Is there a more efficient way? |
Hello, I had a couple of follow-up questions.
Thanks very much, in advance, for any help/guidance. |
In .../samples/test.py, you have a function,
def get_test_results(context):
This appears to get all of the test results for a given context. Is it possible to get the test result of a single test case?
The text was updated successfully, but these errors were encountered: