aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/run_performance_tests.py
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-09-15 09:08:32 -0700
committerGravatar Craig Tiller <ctiller@google.com>2016-09-15 09:08:32 -0700
commitaccf16b41ef9f610819eba62aedea9a924fec861 (patch)
tree0b56b266f9539718938d47267afd6a4060e55e52 /tools/run_tests/run_performance_tests.py
parentc1b54f2fabf4fc263cb14d9042281c978bdfcbef (diff)
Missed import
Diffstat (limited to 'tools/run_tests/run_performance_tests.py')
-rwxr-xr-xtools/run_tests/run_performance_tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/run_tests/run_performance_tests.py b/tools/run_tests/run_performance_tests.py
index 30865c66be..2722d80353 100755
--- a/tools/run_tests/run_performance_tests.py
+++ b/tools/run_tests/run_performance_tests.py
@@ -33,11 +33,13 @@
from __future__ import print_function
import argparse
+import collections
import itertools
import jobset
import json
import multiprocessing
import os
+import performance.scenario_config as scenario_config
import pipes
import re
import subprocess
@@ -46,7 +48,6 @@ import tempfile
import time
import traceback
import uuid
-import performance.scenario_config as scenario_config
_ROOT = os.path.abspath(os.path.join(os.path.dirname(sys.argv[0]), '../..'))