From 6fbd7503da36af43f9e24dbd156a0965d1e17c03 Mon Sep 17 00:00:00 2001 From: Prasanna Santhanam Date: Thu, 21 Jun 2012 09:26:06 +0530 Subject: [PATCH] adding unittest-xml-reporting as a dependency to marvin --- tools/marvin/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/marvin/setup.py b/tools/marvin/setup.py index 83c9c8a0a32..46be4f190f6 100644 --- a/tools/marvin/setup.py +++ b/tools/marvin/setup.py @@ -23,8 +23,8 @@ setup(name="Marvin", packages=["marvin", "marvin.cloudstackAPI", "marvin.sandbox", "marvin.pymysql", "marvin.pymysql.constants", "marvin.pymysql.tests"], license="LICENSE.txt", install_requires=[ - "Python>=2.7", "paramiko", - "nose" + "nose", + "unittest-xml-reporting" ], )