Why can't I see any data in the Google App Engine *Development* Console?

Posted by willem on Stack Overflow See other posts from Stack Overflow or by willem
Published on 2009-12-09T07:07:29Z Indexed on 2010/06/06 13:52 UTC
Read the original article Hit count: 273

I run my google app engine application in one of two ways...

  1. Directly by using the application from http://localhost:8080
  2. Or execute unit tests from http://localhost:8080/test

When I create entities by using the application directly, the data is visible in the Development Console (dataStore view).

However, when I execute the unit tests... even if they succeed and I can put() and get() data, the data does not show in the dataStore view. Any idea why I can't see my data? Even though it is there?

Notes:

  • I use GAEUnit for unit tests.
  • the data stored mostly consists of StringProperties().
  • I use Python and run Django on top of the GAE, don't know if that matters.

© Stack Overflow or respective owner

Related posts about django

Related posts about google-app-engine