Skip to content

Commit

Permalink
Merge pull request #185 from remcohaszing/gax
Browse files Browse the repository at this point in the history
Add google.gax to default ignore list
  • Loading branch information
spulec authored Mar 6, 2018
2 parents 652bb7d + 9aab0a3 commit 201ed6f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions freezegun/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -597,6 +597,8 @@ def freeze_time(time_to_freeze=None, tz_offset=0, ignore=None, tick=False, as_ar
if ignore is None:
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, as_arg)
Expand Down

0 comments on commit 201ed6f

Please sign in to comment.