In my project I've been using the Google test framework example, at the bottom of: https://developers.google.com/appengine/docs/python/tools/localunittesting
This has been working fine in Python2.5, but now with Python 2.7 (is my default python version) It's not picking up the Python 2.7 libraries.
The test are still executed, but with the Python 2.5 runtime and not with Python 2.7
Examples: - It's using the default 0.96 django library - It can find the module json when using import json (that works fine in production)
Does anybody know how to run unit tests that do use the Python 2.7 AppEngine SDK?
json.__file__of thejsonlibrary you are importing? Assert that the path is correct and share your findings. - Joseph Victor Zammit