Skip to content

Commit 1cfbe19

Browse files
author
Luiko Czub
committed
prepare release v0.5.0
1 parent 5f8ce98 commit 1cfbe19

File tree

7 files changed

+31
-8
lines changed

7 files changed

+31
-8
lines changed

CHANGES.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
Changes in TestLink-API-Python-client Source Distribution
22
=========================================================
33

4-
TestLink-API-Python-client UNDER DEVELOP v0.5.0
5-
-----------------------------------------------------------
4+
TestLink-API-Python-client v0.5.0
5+
-----------------------------------
6+
support for TestLink release 1.9.10
67

78
new service methods - list keywords #25
89
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -17,7 +18,6 @@ Example::
1718

1819
>>> import testlink
1920
>>> tls = testlink.TestLinkHelper().connect(testlink.TestlinkAPIClient)
20-
>>> tls.getTestCase(None, testcaseexternalid='NPROAPI-3')
2121
>>> tc_kw = tls.listKeywordsForTC('NPROAPI-3')
2222
['KeyWord01', 'KeyWord03']
2323
>>> tc_kw = tls.listKeywordsForTC(5440)

doc/install.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ TestLink-API-Python-client Installation
44
Preconditions
55
-------------
66

7-
Currently the combinations Python 2.6.6/2.7.5 and TestLink 1.9.8/1.9.9 are tested.
7+
Currently the combinations Python 2.6.6/2.7.5 and TestLink 1.9.10 are tested.
88

99
- Other combination might work - feedback is welcome :-)
1010

doc/usage.rst

+24-1
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,29 @@ alternative optional args, default reporter (user for devKey)
9999
>>> tls.reportTCResult(a_TestPlanID, 'b', testcaseexternalid=exTCID,
100100
buildid='a build name', platformname='a platform name')
101101

102+
List keywords
103+
-------------------
104+
105+
Using the api method - keywords for all test cases of one test suite
106+
107+
>>> import testlink
108+
>>> tls = testlink.TestLinkHelper().connect(testlink.TestlinkAPIClient)
109+
>>> ts_kw = tls.getTestCasesForTestSuite(SuiteID, False, 'full', getkeywords=True)
110+
111+
Using the api method - keywords for all test cases of a test suite and their
112+
sub suites
113+
114+
>>> ts_kw = tls.getTestCasesForTestSuite(SuiteID, True, 'full', getkeywords=True)
115+
116+
Using the service method - keyword list without internal details for one test case
117+
118+
>>> tc_kw = tls.listKeywordsForTC(5440)
119+
>>> tc_kw = tls.listKeywordsForTC('NPROAPI-3')
120+
121+
Using the service method - keyword lists without internal details for all test
122+
cases of one test suite
123+
124+
>>> ts_kw = tls.listKeywordsForTS('5415')
102125

103126
Run examples
104127
------------
@@ -118,7 +141,7 @@ parameter defined as environment variables [2]_: ::
118141
set TESTLINK_API_PYTHON_SERVER_URL=http://[YOURSERVER]/testlink/lib/api/xmlrpc/v1/xmlrpc.php
119142
set TESTLINK_API_PYTHON_DEVKEY=[Users devKey generated by TestLink]
120143
python example\TestLinkExampleGenericApi.py
121-
144+
122145
Run unittests
123146
-------------
124147

example/TestLinkExample.py

-1
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,6 @@
632632
print "Number of TestCases (in TestSuites): %s " % myTestLink.countTestCasesTS()
633633
print "Number of TestCases (in TestPlans) : %s " % myTestLink.countTestCasesTP()
634634
print ""
635-
myTestLink.listProjects()
636635

637636
print
638637
print ""
File renamed without changes.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070

7171
setup(name='TestLink-API-Python-client',
7272
version=VERSION,
73-
description='Python XML-RPC client for TestLink',
73+
description='Python XML-RPC client for TestLink %s' % TL_RELEASE,
7474
long_description = DESCRIPTION,
7575
author='James Stock, Olivier Renault, Luiko Czub, TestLink-API-Python-client developers',
7676

src/testlink/version.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,5 @@
1717
#
1818
# ------------------------------------------------------------------------
1919

20-
VERSION = '0.5.0-dev25'
20+
VERSION = '0.5.0'
21+
TL_RELEASE = '1.9.10'

0 commit comments

Comments
 (0)