summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/catapult/catapult_build/bin/run_py_tests
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/catapult/catapult_build/bin/run_py_tests')
-rwxr-xr-xchromium/third_party/catapult/catapult_build/bin/run_py_tests5
1 files changed, 5 insertions, 0 deletions
diff --git a/chromium/third_party/catapult/catapult_build/bin/run_py_tests b/chromium/third_party/catapult/catapult_build/bin/run_py_tests
index baed4330134..97ccbdf2a12 100755
--- a/chromium/third_party/catapult/catapult_build/bin/run_py_tests
+++ b/chromium/third_party/catapult/catapult_build/bin/run_py_tests
@@ -21,6 +21,11 @@ if __name__ == '__main__':
else:
install.InstallHooks()
+ # For some reason the value of PYTHONPATH on try bot will cause import error
+ # when the test is invoked by vpython3. Removing the value as a workaround.
+ if sys.version_info.major == 3 and 'PYTHONPATH' in os.environ:
+ os.environ.pop('PYTHONPATH')
+
from catapult_build import run_with_typ
sys.exit(run_with_typ.Run(
os.path.join(_CATAPULT, 'catapult_build'),