Skipping non applicable tests

This commit is contained in:
GregBestland
2015-10-23 17:01:36 -05:00
parent 95c6008acf
commit 80316f81b6
2 changed files with 3 additions and 1 deletions

View File

@@ -77,6 +77,7 @@ class CythonProtocolHandlerTest(unittest.TestCase):
cluster.shutdown()
@notprotocolv1
@numpytest
def test_numpy_parser(self):
"""

View File

@@ -28,7 +28,7 @@ from cassandra.cqltypes import Int32Type, EMPTY
from cassandra.query import dict_factory, ordered_dict_factory
from cassandra.util import sortedset
from tests.integration import get_server_versions, use_singledc, PROTOCOL_VERSION, execute_until_pass
from tests.integration import get_server_versions, use_singledc, PROTOCOL_VERSION, execute_until_pass, notprotocolv1
from tests.integration.datatype_utils import update_datatypes, PRIMITIVE_DATATYPES, COLLECTION_TYPES, \
get_sample, get_collection_sample
@@ -706,6 +706,7 @@ class TypeTests(unittest.TestCase):
self.assertEqual(0, result.a)
self.assertEqual(('abc',), result.b)
@notprotocolv1
def test_special_float_cql_encoding(self):
"""
Test to insure that Infinity -Infinity and NaN are supported by the python driver.