Make Release 0.6

Change-Id: I634145e32e1cd079dab2d90b94f8ec8e17592239
This commit is contained in:
Jason Kölker 2012-05-11 09:18:53 -05:00
parent 9352e909b8
commit aa53d4d733
3 changed files with 5 additions and 3 deletions

View File

@ -26,6 +26,7 @@ The following options are availible:
Show the elaped runtime of tests.
[NOSE_OPENSTACK_SHOW_ELAPSED]
--openstack-color Colorize output. [NOSE_OPENSTACK_COLOR]
--openstack-nocolor Disable colorize output. [NOSE_OPENSTACK_COLOR]
--openstack-num-slow=OPENSTACK_NUM_SLOW
Number top slowest tests to report.
[NOSE_OPENSTACK_NUM_SLOW]

View File

@ -162,7 +162,8 @@ class Openstack(plugins.Plugin):
parser.add_option("--openstack-nocolor", action="store_false",
default=env.get("NOSE_OPENSTACK_COLOR"),
dest="openstack_color",
help="Disable colorized output. [NOSE_OPENSTACK_COLOR]")
help=("Disable colorized output. "
"[NOSE_OPENSTACK_COLOR]"))
parser.add_option("--openstack-num-slow",
dest="openstack_num_slow",
default=env.get("NOSE_OPENSTACK_NUM_SLOW", 5),

View File

@ -1,12 +1,12 @@
from setuptools import setup, find_packages
version = "0.5"
version = "0.6"
setup(name="openstack.nose_plugin",
version=version,
description="openstack run_tests.py style output for nosetests",
long_description=open("README.rst").read(),
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[],
keywords="nose",
author="Jason K\xc3\xb6lker",
author_email="jason@koelker.net",