Skip to content

Commit

Permalink
Remove Bing from testing
Browse files Browse the repository at this point in the history
  • Loading branch information
DenisCarriere committed Feb 28, 2015
1 parent b3b2c16 commit 1dea375
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test_geocoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,11 @@ def test_google_elevation():
g = geocoder.google(ottawa, method='elevation')
assert g.ok

"""
Bing causing issues
First request is rarely successful
def test_bing():
# First request rarely successful
g = geocoder.bing(location)
g = geocoder.bing(location)
assert g.ok
Expand All @@ -82,7 +84,7 @@ def test_bing_reverse():
g = geocoder.bing(ottawa, method='reverse')
g = geocoder.bing(ottawa, method='reverse')
assert g.ok

"""

def test_opencage():
g = geocoder.opencage(location)
Expand Down

0 comments on commit 1dea375

Please sign in to comment.