Skip to content

Commit 01c2623

Browse files
author
Luiko Czub
committed
prepare release 0.6.3
1 parent ef197e7 commit 01c2623

File tree

6 files changed

+12
-3
lines changed

6 files changed

+12
-3
lines changed

Diff for: .travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ python:
55
- "2.7"
66
- "3.3"
77
- "3.4"
8+
- "3.5"
89

910
# command to install dependencies
1011
install:

Diff for: doc/install.rst

+5-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ TestLink-API-Python-client Installation
77
Preconditions
88
-------------
99

10-
Currently the combinations Python 2.6.9/2.7.9/3.3.5/3.4.2 and TestLink 1.9.14 are tested.
10+
Currently the combinations Python 2.6.9/2.7.9/3.3.5/3.4.2 are tested with
11+
TestLink 1.9.15 including the fixes
12+
- `TL 7696 <http://mantis.testlink.org/view.php?id=7696>`_ ,
13+
`TL 7708 <http://mantis.testlink.org/view.php?id=7708>` and
14+
`TL 7765 <http://mantis.testlink.org/view.php?id=7765>`
1115

1216
- Other combination might work - feedback is welcome :-)
1317

Diff for: example/TestLinkExample.py

+2
Original file line numberDiff line numberDiff line change
@@ -622,6 +622,8 @@
622622
print("updateTestSuite", updatedTestSuite)
623623

624624
# Update test suite A name and order details - Using Project Name
625+
# with TL 1.9.15 this step fails - solution see TL Mantis Ticket 7696
626+
# <http://mantis.testlink.org/view.php?id=7696>
625627
changedNEWTESTSUITE_A = NEWTESTSUITE_A + ' - Changed'
626628
updatedTestSuite = myTestLink.updateTestSuite(newTestSuiteID_A, prefix=NEWPREFIX,
627629
testsuitename = changedNEWTESTSUITE_A, order=1)

Diff for: example/TestLinkExampleGenericApi.py

+2
Original file line numberDiff line numberDiff line change
@@ -629,6 +629,8 @@
629629
print("updateTestSuite", updatedTestSuite)
630630

631631
# Update test suite A name and order details - Using Project Name
632+
# with TL 1.9.15 this step fails - solution see TL Mantis Ticket 7696
633+
# <http://mantis.testlink.org/view.php?id=7696>
632634
changedNEWTESTSUITE_A = NEWTESTSUITE_A + ' - Changed'
633635
updatedTestSuite = myTestLink.updateTestSuite(newTestSuiteID_A, prefix=NEWPREFIX,
634636
testsuitename = changedNEWTESTSUITE_A, order=1)

Diff for: src/testlink/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
#
1818
# ------------------------------------------------------------------------
1919

20-
VERSION = '0.6.3-dev071'
20+
VERSION = '0.6.3-alpha'
2121
TL_RELEASE = '1.9.15'
2222

Diff for: tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# TESTLINK_API_PYTHON_DEVKEY and TESTLINK_API_PYTHON_SERVER_URL
55
# with your server settings
66
[tox]
7-
envlist = py26,py27,py33,py34
7+
envlist = py26,py27,py33,py34,py35
88
[testenv]
99
deps=pytest
1010
py26: unittest2

0 commit comments

Comments
 (0)