Clean up test environment and remove unused imports.

First round of adding more complete unit test coverage.

Change-Id: Ic1979c499ca6fcb784892a95954a3527539c4e53
This commit is contained in:
Josh Kearney 2013-01-21 13:44:38 -06:00
parent 3aa002aa2f
commit 5526565ac4
4 changed files with 2 additions and 7 deletions

2
.mailmap Normal file
View File

@ -0,0 +1,2 @@
<josh.kearney@pistoncloud.com> <josh@jk0.org>
<matt.joyce@cloudscaling.com> <matt@nycresistor.com>

View File

@ -20,7 +20,6 @@
import logging
from openstackclient.common import exceptions as exc
from openstackclient.compute import client as compute_client
from openstackclient.identity import client as identity_client
from openstackclient.image import client as image_client

View File

@ -23,8 +23,6 @@ import os
import sys
import uuid
import prettytable
from openstackclient.common import exceptions

View File

@ -78,10 +78,6 @@ def parse_requirements(requirements_files=['requirements.txt',
# -f lines are for index locations, and don't get used here
elif re.match(r'\s*-f\s+', line):
pass
# argparse is part of the standard library starting with 2.7
# adding it to the requirements list screws distro installs
elif line == 'argparse' and sys.version_info >= (2, 7):
pass
else:
requirements.append(line)