I want to run Python code coverage tests for Google App Engine in Eclipse or from command line.
Normally Python program required such command line:
coverage run program arguments
I trying to run it for Google App Engine but no data is collected from following command line:
coverage run [path_to_google_app_engine]/dev_appserver.py [application_options] application_root
It not produce .coverage after terminating server - do you have any idea what is wrong? How to stop server and get .coverage data?