1
1
Changes in TestLink-API-Python-client Source Distribution
2
2
=========================================================
3
3
4
- PreRelease TestLink-API-Python-client with proxy support
5
- --------------------------------------------------------
4
+ TestLink-API-Python-client v0.6.1 - Under Develop
5
+ ------------------------------------------------------------
6
6
7
- Pull Request - Proxy configuration support in TestLinkHelper #36
7
+ Proxy configuration support in TestLinkHelper - pull request #36
8
8
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9
9
10
- Pull Request from Maberi allows proxy configuration using TestLinkHelper.
10
+ Integrates `Maberi <https://github.com/Maberi/TestLink-API-Python-client >`_
11
+ pull request `#36 <https://github.com/lczub/TestLink-API-Python-client/pull/36 >`_
11
12
12
- Adds a new --proxy option in command line.
13
- Recognizes "http_proxy" environment variable.
13
+ - allows easy proxy configuration using TestLinkHelper
14
+ - Adds a new --proxy option in command line.
15
+ - Recognizes "http_proxy" environment variable.
14
16
15
17
16
- TestLink-API-Python-client release notes v0.5.2 (Oct. 2014)
18
+ TestLink-API-Python-client release notes v0.6.0 (Dec. 2014)
19
+ ------------------------------------------------------------
20
+
21
+ support for TestLink release 1.9.12 and py26, py27, py33 and py34
22
+
23
+ python 3 support - pull requests #33 #37
24
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
25
+
26
+ Integrates `manojklm <https://github.com/manojklm/TestLink-API-Python-client >`_
27
+ pull requests
28
+ `#33 <https://github.com/lczub/TestLink-API-Python-client/pull/33 >`_
29
+ and `#37 <https://github.com/lczub/TestLink-API-Python-client/pull/37 >`_
30
+
31
+ - add source and unittest support for py33 and py34
32
+ - extend py26 support for unittest2
33
+ - add *.travis.yml * configuration for `Travis CI <http://docs.travis-ci.com/ >`_
34
+ - add *tox.ini * configuration for `Tox <http://tox.readthedocs.org >`_
35
+
36
+ Track now TestLink-API-Python-client build results on Travis CI - see
37
+ https://travis-ci.org/lczub/TestLink-API-Python-client
38
+
39
+ extend upload attachments - handling file path #40
40
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
41
+
42
+ uploading attachments excepts now also a file path as parameter.
43
+
44
+ still supported 0.5.2 behavior - file descriptor::
45
+
46
+ a_file_obj=open(A_VALID_FILE_PATH)
47
+ newAttachment = myTestLink.uploadExecutionAttachment(a_file_obj, A_Result_ID,
48
+ 'Attachment Title', 'Attachment Description')
49
+
50
+ new supported 0.6.0 behaviour - file path::
51
+
52
+ a_file_path=A_VALID_FILE_PATH
53
+ newAttachment = myTestLink.uploadExecutionAttachment(a_file_path, A_Result_ID,
54
+ 'Attachment Title', 'Attachment Description')
55
+
56
+ TestLink-API-Python-client release notes v0.5.2 (Oct. 2014)
17
57
-----------------------------------------------------------
18
58
support for TestLink release 1.9.12
19
59
@@ -29,7 +69,7 @@ new TestlinkAPIGeneric and TestlinkAPIClient api method
29
69
examples see `<example/TestLinkExample.py >`_
30
70
31
71
implement 1.9.12 new api method - getTestCaseBugs #30
32
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
72
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
33
73
34
74
new TestlinkAPIGeneric and TestlinkAPIClient api method
35
75
@@ -41,11 +81,11 @@ new TestlinkAPIGeneric and TestlinkAPIClient api method
41
81
examples see `<example/TestLinkExample.py >`_
42
82
43
83
TestLink-API-Python-client release notes v0.5.1 (Aug. 2014)
44
- ------------------------------------------------------------
84
+ -----------------------------------------------------------
45
85
support for TestLink release 1.9.11
46
86
47
87
implement 1.9.11 api change - getLastExecutionResult #27
48
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
88
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
49
89
50
90
TestlinkAPIGeneric and TestlinkAPIClient api method getLastExecutionResult()
51
91
accepts now following additional optional arguments
@@ -59,7 +99,7 @@ example:
59
99
[{ ... , 'tcversion_id': '8929', ... , 'bugs': [{'bug_id': '4711'}], ... }]
60
100
61
101
implement 1.9.11 new api method - assignTestCaseExecutionTask #26
62
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
102
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
63
103
64
104
new TestlinkAPIGeneric and TestlinkAPIClient api method
65
105
@@ -71,7 +111,7 @@ examples see `<example/TestLinkExample.py>`_
71
111
72
112
73
113
TestLink-API-Python-client release notes v0.5.0 (Jul. 2014)
74
- ------------------------------------------------------------
114
+ -----------------------------------------------------------
75
115
support for TestLink release 1.9.10
76
116
77
117
new service methods - list keywords #25
@@ -111,7 +151,7 @@ accepts now following additional optional arguments (usable with TL >= 1.9.10)
111
151
- parameter getkeywords
112
152
113
153
implement 1.9.10 api change - reportTCResult #24
114
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
154
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
115
155
116
156
TestlinkAPIGeneric and TestlinkAPIClient api method reportTCResult()
117
157
accepts now following additional optional arguments (usable with TL >= 1.9.10)
@@ -120,7 +160,7 @@ accepts now following additional optional arguments (usable with TL >= 1.9.10)
120
160
121
161
122
162
implement missing 1.9.8 api method - CustomField #12
123
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
163
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
124
164
125
165
new TestlinkAPIGeneric and TestlinkAPIClient api methods
126
166
@@ -167,7 +207,7 @@ new TestlinkAPIGeneric and TestlinkAPIClient service method to return connection
167
207
- connectionInfo()
168
208
169
209
implement missing 1.9.8 api method - miscellaneous #14
170
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
210
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
171
211
172
212
new TestlinkAPIGeneric and TestlinkAPIClient api methods
173
213
0 commit comments