我剛剛得知你可以在App Engine上做到這一點,讓您的實例內存使用情況:GAE/P:runtime.memory_usage的測試樁存根?
from google.appengine.api.runtime import memory_usage
memory_usage().current()
這是非常酷的,但是當我運行測試,我得到這個錯誤:
File ".../google-cloud-sdk/platform/google_appengine/google/appengine/api/apiproxy_stub_map.py", line 322, in MakeSyncCall assert stub, 'No api proxy found for service "%s"' % service AssertionError: No api proxy found for service "system"
在測試平臺中是否存在這個存根?沒有init_system_stub
。
我只是在升級GAE後大肆宣傳。也許是迴歸? – speedplane
我正在嘗試單元測試使用'background_thread'功能的代碼。 – DaveBensonPhillips