aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/run_tests_matrix.py
diff options
context:
space:
mode:
authorGravatar Nathaniel Manista <nathaniel@google.com>2017-03-13 22:38:12 -0700
committerGravatar GitHub <noreply@github.com>2017-03-13 22:38:12 -0700
commit264a2108788fde232dfec976a511ed732864ddb0 (patch)
treec2c08290ac00ecf2d206b94fdbf43c85770f2afd /tools/run_tests/run_tests_matrix.py
parent37bbbd770f3131cf5edbc1201d343320440897af (diff)
parent8e64d901fd7efd39868a889159329f41f74e3f9e (diff)
Merge pull request #10115 from thunderboltsid/update-run-tests-scripts-to-python3.x
Make testing scripts python3.x compatible.
Diffstat (limited to 'tools/run_tests/run_tests_matrix.py')
-rwxr-xr-xtools/run_tests/run_tests_matrix.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/run_tests/run_tests_matrix.py b/tools/run_tests/run_tests_matrix.py
index 61a5ab2cef..b9bf6e5037 100755
--- a/tools/run_tests/run_tests_matrix.py
+++ b/tools/run_tests/run_tests_matrix.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python2.7
+#!/usr/bin/env python
# Copyright 2015, Google Inc.
# All rights reserved.
#
@@ -30,6 +30,8 @@
"""Run test matrix."""
+from __future__ import print_function
+
import argparse
import multiprocessing
import os