Skip Test due to server bug in 2.6

This commit is contained in:
Ross Lawley 2014-06-26 19:25:05 +01:00
parent 70651ce994
commit 4ee212e7d5

View File

@ -5,6 +5,8 @@ import unittest
from datetime import datetime, timedelta from datetime import datetime, timedelta
from mongoengine import * from mongoengine import *
from nose.plugins.skip import SkipTest
__all__ = ("GeoQueriesTest",) __all__ = ("GeoQueriesTest",)
@ -139,6 +141,7 @@ class GeoQueriesTest(unittest.TestCase):
def test_spherical_geospatial_operators(self): def test_spherical_geospatial_operators(self):
"""Ensure that spherical geospatial queries are working """Ensure that spherical geospatial queries are working
""" """
raise SkipTest("https://jira.mongodb.org/browse/SERVER-14039")
class Point(Document): class Point(Document):
location = GeoPointField() location = GeoPointField()