diff options
author | Serena Feng <feng.xiaowei@zte.com.cn> | 2016-12-26 02:39:24 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2016-12-26 02:39:24 +0000 |
commit | 264814da718fcab0abf83e36fd1c3b960db16fd7 (patch) | |
tree | 1d30c2e4af9201c41e603258390605ff86cfa27c /functest/utils/functest_utils.py | |
parent | 76eae8230d0ad213bdca67dceb7ea212a3ac84f6 (diff) | |
parent | e4fea1c639b3f04998595bac43c7a45dea5c4c73 (diff) |
Merge "refactor rally using new constants provider"
Diffstat (limited to 'functest/utils/functest_utils.py')
-rw-r--r-- | functest/utils/functest_utils.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/functest/utils/functest_utils.py b/functest/utils/functest_utils.py index 3145f573..1879e694 100644 --- a/functest/utils/functest_utils.py +++ b/functest/utils/functest_utils.py @@ -7,12 +7,14 @@ # which accompanies this distribution, and is available at # http://www.apache.org/licenses/LICENSE-2.0 # +import functools import json import os import re import shutil import subprocess import sys +import time import urllib2 from datetime import datetime as dt @@ -21,9 +23,6 @@ import requests import yaml from git import Repo -import time -import functools - import functest.utils.functest_logger as ft_logger logger = ft_logger.Logger("functest_utils").getLogger() |