Excluding cython null test for C* 2.1

This commit is contained in:
GregBestland
2016-06-16 13:28:00 -05:00
parent 8228abc083
commit e0f2fb11d1

View File

@@ -12,7 +12,7 @@ from cassandra.query import tuple_factory
from cassandra.cluster import Cluster, NoHostAvailable from cassandra.cluster import Cluster, NoHostAvailable
from cassandra.protocol import ProtocolHandler, LazyProtocolHandler, NumpyProtocolHandler, ConfigurationException from cassandra.protocol import ProtocolHandler, LazyProtocolHandler, NumpyProtocolHandler, ConfigurationException
from cassandra.cython_deps import HAVE_CYTHON, HAVE_NUMPY from cassandra.cython_deps import HAVE_CYTHON, HAVE_NUMPY
from tests.integration import use_singledc, PROTOCOL_VERSION, notprotocolv1, drop_keyspace_shutdown_cluster, VERIFY_CYTHON, BasicSharedKeyspaceUnitTestCase, execute_with_retry_tolerant, greaterthancass20 from tests.integration import use_singledc, PROTOCOL_VERSION, notprotocolv1, drop_keyspace_shutdown_cluster, VERIFY_CYTHON, BasicSharedKeyspaceUnitTestCase, execute_with_retry_tolerant, greaterthancass21
from tests.integration.datatype_utils import update_datatypes from tests.integration.datatype_utils import update_datatypes
from tests.integration.standard.utils import ( from tests.integration.standard.utils import (
create_table_with_all_types, get_all_primitive_params, get_primitive_datatypes) create_table_with_all_types, get_all_primitive_params, get_primitive_datatypes)
@@ -232,7 +232,7 @@ class NumpyNullTest(BasicSharedKeyspaceUnitTestCase):
self.session.row_factory = tuple_factory self.session.row_factory = tuple_factory
@numpytest @numpytest
@greaterthancass20 @greaterthancass21
def test_null_types(self): def test_null_types(self):
""" """
Test to validate that the numpy protocol handler can deal with null values. Test to validate that the numpy protocol handler can deal with null values.