dho-qa: remove unused libraries from verify_client

Removes several superfluous imports from verify_client.py
This commit is contained in:
Kyle Marsh 2011-07-13 10:06:23 -07:00
parent d9f3324b5e
commit 83dc04c0f2

View file

@ -2,12 +2,8 @@
from boto.s3.key import Key from boto.s3.key import Key
from optparse import OptionParser from optparse import OptionParser
import realistic
import traceback import traceback
import random
import common import common
import yaml
import boto
import sys import sys
@ -38,12 +34,14 @@ def get_key_properties(key):
def main(): def main():
'''To run the static content load test, make sure you've bootstrapped your """Client results validation tool make sure you've bootstrapped your
test environment and set up your config.yml file, then run the following: test environment and set up your config.yml file, then run the
following:
S3TEST_CONF=config.yml virtualenv/bin/python verify_client.py -O output.txt test-bucket-name S3TEST_CONF=config.yml virtualenv/bin/python verify_client.py -O output.txt test-bucket-name
S3 authentication information for the bucket's owner must be in config.yml to create the connection. S3 authentication information for the bucket's owner must be in
''' config.yml to create the connection.
"""
(options, args) = parse_opts(); (options, args) = parse_opts();
#SETUP #SETUP