Skip to content

Commit 68fabee

Browse files
author
bjmb
committed
Added Python 3.5 support in testing
1 parent 925deb9 commit 68fabee

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

build.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ schedules:
77
python:
88
- 2.7
99
- 3.4
10+
- 3.5
1011
- 3.6
1112

1213
os:

tests/unit/cython/utils.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@
1313
# limitations under the License.
1414

1515
from cassandra.cython_deps import HAVE_CYTHON, HAVE_NUMPY
16-
from tests.integration import VERIFY_CYTHON
16+
try:
17+
from tests.integration import VERIFY_CYTHON
18+
except ImportError:
19+
VERIFY_CYTHON = False
1720

1821
try:
1922
import unittest2 as unittest

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
[tox]
2-
envlist = py{27,33,34,36},pypy
2+
envlist = py{27,33,34,35,36},pypy
33

44
[base]
55
deps = nose
66
mock<=1.0.1
77
PyYAML
88
six
99
packaging
10-
eventlet
1110

1211
[testenv]
1312
deps = {[base]deps}

0 commit comments

Comments
 (0)