Index: Tools/Scripts/webkitpy/test/main.py |
diff --git a/Tools/Scripts/webkitpy/test/main.py b/Tools/Scripts/webkitpy/test/main.py |
index da66ee5e270daeb42364ce0dbf6983af96b61361..c1a7cd6abf2b001cfd1d2c4a03d264d78108d3f1 100644 |
--- a/Tools/Scripts/webkitpy/test/main.py |
+++ b/Tools/Scripts/webkitpy/test/main.py |
@@ -59,7 +59,7 @@ def main(): |
# This only needs to run on Unix, so don't worry about win32 for now. |
appengine_sdk_path = '/usr/local/google_appengine' |
- if os.path.exists(appengine_sdk_path): |
+ if False and os.path.exists(appengine_sdk_path): |
eseidel
2014/09/09 23:10:55
?
Dirk Pranke
2014/09/09 23:32:22
Whoops. I was trying to skip the appengine tests w
|
if not appengine_sdk_path in sys.path: |
sys.path.append(appengine_sdk_path) |
import dev_appserver |