run-tests: initialize global variables to suppress pyflakes warning
authorYuya Nishihara <yuya@tcha.org>
Fri, 02 May 2014 18:25:23 +0900
changeset 21231 1ce16c7b7fb4
parent 21230 d882a8786ddf
child 21232 0768cda8b579
run-tests: initialize global variables to suppress pyflakes warning
tests/run-tests.py
--- a/tests/run-tests.py	Tue May 06 12:47:59 2014 -0500
+++ b/tests/run-tests.py	Fri May 02 18:25:23 2014 +0900
@@ -101,6 +101,8 @@
 if 'java' in sys.platform:
     IMPL_PATH = 'JYTHONPATH'
 
+TESTDIR = HGTMP = INST = BINDIR = TMPBINDIR = PYTHONDIR = None
+
 requiredtools = [os.path.basename(sys.executable), "diff", "grep", "unzip",
                  "gunzip", "bunzip2", "sed"]
 createdfiles = []