From fa7bf41e69214d73b756b68fb58ec57dc6e208be Mon Sep 17 00:00:00 2001 From: Hans Feldt Date: Tue, 16 Jun 2015 09:27:31 +0200 Subject: Add support for single server ping test A simple test case is added that will ping an external server on the internet. See samples/ping-ext-ip.yaml Change-Id: I15eb3cb6ab9e5c1cf280f2aade2bf4c9646d6cd4 JIRA: - Signed-off-by: Hans Feldt --- setup.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index ff415aecd..742192c6f 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,8 @@ setup( include_package_data=True, package_data={'yardstick': ['benchmark/scenarios/networking/*.bash']}, url="https://www.opnfv.org", - install_requires=["flake8", + install_requires=["backport_ipaddress", # remove with python3 + "flake8", "PyYAML>=3.10", "pbr!=0.7,<1.0,>=0.6", "python-glanceclient>=0.12.0", @@ -18,14 +19,14 @@ setup( "python-keystoneclient>=0.11.1", "python-neutronclient>=2.3.9", "python-novaclient>=2.24.1", - "mock>=1.0.1", + "mock>=1.0.1", # remove with python3 "paramiko", "six" ], - entry_points = { + entry_points={ 'console_scripts': [ 'yardstick=yardstick.main:main', ], }, - scripts =['tools/yardstick-img-modify'] + scripts=['tools/yardstick-img-modify'] ) -- cgit 1.2.3-korg