Disable Mapbox Matrix API usage at tests
This commit is contained in:
parent
ed2e87f4ca
commit
d9f647504a
@ -173,7 +173,8 @@ class TestGeocoderOrgConfig(TestCase):
|
|||||||
|
|
||||||
|
|
||||||
class TestIsolinesUserConfig(TestCase):
|
class TestIsolinesUserConfig(TestCase):
|
||||||
ISOLINES_PROVIDERS = ['heremaps', 'mapzen', 'mapbox', 'tomtom']
|
# Don't test mapbox. See CartoDB/cartodb-management/issues/5199"
|
||||||
|
ISOLINES_PROVIDERS = ['heremaps', 'mapzen', 'tomtom']
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
self.redis_conn = MockRedis()
|
self.redis_conn = MockRedis()
|
||||||
@ -233,8 +234,8 @@ class TestIsolinesUserConfig(TestCase):
|
|||||||
|
|
||||||
|
|
||||||
class TestIsolinesOrgConfig(TestCase):
|
class TestIsolinesOrgConfig(TestCase):
|
||||||
|
# Don't test mapbox. See CartoDB/cartodb-management/issues/5199"
|
||||||
ISOLINES_PROVIDERS = ['heremaps', 'mapzen', 'mapbox', 'tomtom']
|
ISOLINES_PROVIDERS = ['heremaps', 'mapzen', 'tomtom']
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
self.redis_conn = MockRedis()
|
self.redis_conn = MockRedis()
|
||||||
|
@ -3,15 +3,13 @@ from mock import Mock
|
|||||||
from cartodb_services.mapbox.isolines import MapboxIsolines
|
from cartodb_services.mapbox.isolines import MapboxIsolines
|
||||||
from cartodb_services.mapbox.matrix_client import DEFAULT_PROFILE
|
from cartodb_services.mapbox.matrix_client import DEFAULT_PROFILE
|
||||||
from cartodb_services.mapbox.matrix_client import MapboxMatrixClient
|
from cartodb_services.mapbox.matrix_client import MapboxMatrixClient
|
||||||
from cartodb_services.mapbox.routing import MapboxRouting
|
|
||||||
from cartodb_services.tools import Coordinate
|
from cartodb_services.tools import Coordinate
|
||||||
from cartodb_services.tools.coordinates import (validate_coordinates,
|
|
||||||
marshall_coordinates)
|
|
||||||
from credentials import mapbox_api_key
|
from credentials import mapbox_api_key
|
||||||
|
|
||||||
VALID_ORIGIN = Coordinate(-73.989, 40.733)
|
VALID_ORIGIN = Coordinate(-73.989, 40.733)
|
||||||
|
|
||||||
|
|
||||||
|
@unittest.skip("Stop using Matrix API. CartoDB/cartodb-management/issues/5199")
|
||||||
class MapboxIsolinesTestCase(unittest.TestCase):
|
class MapboxIsolinesTestCase(unittest.TestCase):
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
|
@ -20,6 +20,7 @@ VALID_PROFILE = DEFAULT_PROFILE
|
|||||||
INVALID_PROFILE = 'invalid_profile'
|
INVALID_PROFILE = 'invalid_profile'
|
||||||
|
|
||||||
|
|
||||||
|
@unittest.skip("Stop using Matrix API. CartoDB/cartodb-management/issues/5199")
|
||||||
class MapboxMatrixTestCase(unittest.TestCase):
|
class MapboxMatrixTestCase(unittest.TestCase):
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
self.matrix_client = MapboxMatrixClient(token=mapbox_api_key(),
|
self.matrix_client = MapboxMatrixClient(token=mapbox_api_key(),
|
||||||
|
Loading…
Reference in New Issue
Block a user