From 17c3d47c8d828041ecdb7e9bbaef7f413588c9d6 Mon Sep 17 00:00:00 2001 From: RWeber Date: Fri, 29 Jun 2018 14:26:28 -0600 Subject: [PATCH] https://github.com/orenault/TestLink-API-Python-client/issues/35 --- src/testlink/testlinkapigeneric.py | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) mode change 100644 => 100755 src/testlink/testlinkapigeneric.py diff --git a/src/testlink/testlinkapigeneric.py b/src/testlink/testlinkapigeneric.py old mode 100644 new mode 100755 index 1e90266..b86ed67 --- a/src/testlink/testlinkapigeneric.py +++ b/src/testlink/testlinkapigeneric.py @@ -131,6 +131,20 @@ def getLastExecutionResult(self): 'getBugs' : True / False """ + @decoApiCallAddDevKey + @decoMakerApiCallWithArgs(['testplanid'], + ['testcaseid', 'testcaseexternalid', + 'platformid', 'platformname', + 'buildid', 'buildname', 'options']) + def getAllExecutionsResults(self): + """ Gets the result of ALL executions for a particular testcase on a test plan. +If there are no filter criteria regarding platform and build, +result will be get WITHOUT checking for a particular platform and build. + +Method can only be used with +TL version >= 1.18 +""" + @decoApiCallWithoutArgs def sayHello(self): """ Lets you see if the server is up and running """ @@ -179,7 +193,7 @@ def createBuild(self): releasedate : YYYY-MM-DD copytestersfrombuild : valid buildid tester assignments will be copied. """ - + @decoMakerApiCallReplaceTLResponseError() @decoApiCallAddDevKey @decoMakerApiCallWithArgs()