Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1553)

Unified Diff: Tools/Scripts/webkitpy/test/main.py

Issue 546613003: Add a new 'format-webkitpy' command that will reformat code to the style guide. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ready for review Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698