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

Unified Diff: gm/rebaseline_server/base_unittest.py

Issue 424263005: teach rebaseline_server to generate diffs of rendered SKPs (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 5 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: gm/rebaseline_server/base_unittest.py
diff --git a/gm/rebaseline_server/base_unittest.py b/gm/rebaseline_server/base_unittest.py
index f8fdff19c90a0e28a2210b5d927b29c80be4c71f..46d1bb81a0ecb8e4a7ff4971a83ef5ff59863c22 100755
--- a/gm/rebaseline_server/base_unittest.py
+++ b/gm/rebaseline_server/base_unittest.py
@@ -21,6 +21,7 @@ TRUNK_DIR = os.path.abspath(os.path.join(PARENT_DIR, os.pardir, os.pardir))
TOOLS_DIR = os.path.join(TRUNK_DIR, 'tools')
if TOOLS_DIR not in sys.path:
sys.path.append(TOOLS_DIR)
+sys.path.insert(0, TOOLS_DIR) # EPOGER: CLEAN THIS UP! The import of tests.base_unittest fails unless I do this.
epoger 2014/07/31 15:18:31 Throughout this patchset, there are these "EPOGER"
import tests.base_unittest as superclass_module

Powered by Google App Engine
This is Rietveld 408576698