Skip to content

Commit

Permalink
Add google.gax to default ignore list
Browse files Browse the repository at this point in the history
google.gax depends on time.time() for communicating with external
systems. This is supposed to fix issues similar to
googleapis/google-cloud-python#3284
  • Loading branch information
remcohaszing committed May 29, 2017
1 parent 894fe1f commit f9c50f7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions freezegun/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -520,6 +520,7 @@ def freeze_time(time_to_freeze=None, tz_offset=0, ignore=None, tick=False):
ignore = []
ignore.append('six.moves')
ignore.append('django.utils.six.moves')
ignore.append('google.gax')
ignore.append('threading')
ignore.append('Queue')
return _freeze_time(time_to_freeze, tz_offset, ignore, tick)
Expand Down

0 comments on commit f9c50f7

Please sign in to comment.