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
{{ message }}
This repository has been archived by the owner on Dec 25, 2019. It is now read-only.
If I run the testrunner.py file as desribed, I get an ImportError because the main module cannot be found:
python testrunner.py ~/Downloads/google_appengine/
Traceback (most recent call last):
File "testrunner.py", line 36, in <module>
main(SDK_PATH, TEST_PATH)
File "testrunner.py", line 21, in main
import main
ImportError: No module named main
I found out (thanks to git/github :)) that once there was a src/main.py file, which was removed for any reason: d848bea
Why was it removed? Is it really no longer needed? If yes, what am I doing wrong or in an outdated way? If it's still needed: give it back!
The text was updated successfully, but these errors were encountered:
Ah, thanks for catching this. The code was refactored to support the Python 2.7 runtime, where the main.py module is no longer applicable. Unfortunately, the testrunner code wasn't updated to reflect the refactoring--will fix as soon as feasible.
If I run the testrunner.py file as desribed, I get an ImportError because the main module cannot be found:
I found out (thanks to git/github :)) that once there was a src/main.py file, which was removed for any reason: d848bea
Why was it removed? Is it really no longer needed? If yes, what am I doing wrong or in an outdated way? If it's still needed: give it back!
The text was updated successfully, but these errors were encountered: