##// END OF EJS Templates
run-tests: check for the correct python when starting
Bryan O'Sullivan -
r18049:07ad75b2 default
parent child Browse files
Show More
@@ -94,7 +94,8 b" IMPL_PATH = 'PYTHONPATH'"
94 if 'java' in sys.platform:
94 if 'java' in sys.platform:
95 IMPL_PATH = 'JYTHONPATH'
95 IMPL_PATH = 'JYTHONPATH'
96
96
97 requiredtools = ["python", "diff", "grep", "unzip", "gunzip", "bunzip2", "sed"]
97 requiredtools = [os.path.basename(sys.executable), "diff", "grep", "unzip",
98 "gunzip", "bunzip2", "sed"]
98
99
99 defaults = {
100 defaults = {
100 'jobs': ('HGTEST_JOBS', 1),
101 'jobs': ('HGTEST_JOBS', 1),
General Comments 0
You need to be logged in to leave comments. Login now