You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a Django project with some tests, including Geocoder mock that starts like this:
with Stub(proxy=Geocoder) as Geocoder:
from pygeocoder import Geocoder
The from import will cause the text execution to hang (100% CPU usage, kill needed) when I add 'djcelery' to installed apps. (and maybe other applications). Without it the tests work normally.
The text was updated successfully, but these errors were encountered:
I have a Django project with some tests, including Geocoder mock that starts like this:
with Stub(proxy=Geocoder) as Geocoder:
from pygeocoder import Geocoder
The from import will cause the text execution to hang (100% CPU usage, kill needed) when I add 'djcelery' to installed apps. (and maybe other applications). Without it the tests work normally.
The text was updated successfully, but these errors were encountered: