Skip to content

Commit 3548a32

Browse files
author
Luiko Czub
committed
py26 test config replaced with py36 #84
1 parent b941002 commit 3548a32

File tree

5 files changed

+7
-24
lines changed

5 files changed

+7
-24
lines changed

.travis.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
sudo: false
22
language: python
33
python:
4-
- "2.6"
54
- "2.7"
6-
- "3.3"
75
- "3.4"
86
- "3.5"
7+
- "3.6"
98

109
# command to install dependencies
1110
install:
12-
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi
13-
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install argparse; fi
1411
- pip install .
1512

1613
# command to run tests

doc/install.rst

+3-14
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,8 @@ TestLink-API-Python-client Installation
77
Preconditions
88
-------------
99

10-
Currently the combinations Python 2.6.9/2.7.12/3.3.5/3.4.4/3.5.2 are tested with
11-
TestLink 1.9.15 including the fixes
12-
13-
- `TL 7696 <http://mantis.testlink.org/view.php?id=7696>`_ ,
14-
`TL 7708 <http://mantis.testlink.org/view.php?id=7708>`_ and
15-
`TL 7765 <http://mantis.testlink.org/view.php?id=7765>`_
16-
17-
Other combination might work - feedback is welcome :-)
18-
19-
To use TestLink-API-Python-client under Py26, the module **argparse** must be
20-
installed additionally (Py27, Py33, Py34 and Py35 already includes this)::
21-
22-
pip install argparse
10+
Currently the combinations Python 2.7.13/3.4.4/3.5.3/3.6.1 are tested with
11+
TestLink 1.9.16. Other combination might work - feedback is welcome :-)
2312

2413
TestLink configuration
2514
----------------------
@@ -116,7 +105,7 @@ with connection parameter as environment variables
116105
- TESTLINK_API_PYTHON_SERVER_URL and TESTLINK_API_PYTHON_DEVKEY
117106

118107
Known Installation Problems
119-
----------------------------
108+
---------------------------
120109

121110
If the installation for the combination **linux + py26** fails, maybe the workaround from `issue 50`_ helps.
122111

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,10 @@
1717
'Development Status :: 5 - Production/Stable',
1818
'License :: OSI Approved :: Apache Software License',
1919
'Operating System :: OS Independent',
20-
'Programming Language :: Python :: 2.6',
2120
'Programming Language :: Python :: 2.7',
22-
'Programming Language :: Python :: 3.3',
2321
'Programming Language :: Python :: 3.4',
2422
'Programming Language :: Python :: 3.5',
23+
'Programming Language :: Python :: 3.6',
2524
'Topic :: Software Development :: Testing',
2625
'Topic :: Software Development :: Libraries :: Python Modules'
2726
]

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.4-dev080'
20+
VERSION = '0.6.4-dev084'
2121
TL_RELEASE = '1.9.16'
2222

tox.ini

+1-3
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@
44
# TESTLINK_API_PYTHON_DEVKEY and TESTLINK_API_PYTHON_SERVER_URL
55
# with your server settings
66
[tox]
7-
envlist = py26,py27,py33,py34,py35
7+
envlist = py27,py34,py35,py36
88
[testenv]
99
deps=pytest
10-
py26: unittest2
11-
py26: argparse
1210
setenv=
1311
TESTLINK_API_PYTHON_DEVKEY={env:TESTLINK_API_PYTHON_DEVKEY:3ec96581bb3d8a34cd28ce338b641063}
1412
TESTLINK_API_PYTHON_SERVER_URL={env:TESTLINK_API_PYTHON_SERVER_URL:http://demo.testlink.org/latest/lib/api/xmlrpc/v1/xmlrpc.php}

0 commit comments

Comments
 (0)