From ef05939910e07f9fa7a82645549ddbe4d3fd1619 Mon Sep 17 00:00:00 2001 From: Prasanna Santhanam Date: Mon, 23 Jul 2012 19:25:07 +0530 Subject: [PATCH] All responsibilty for running through nose belongs to the marvin-nose plugin --- tools/marvin/marvin/NoseTestExecuteEngine.py | 22 -------------------- 1 file changed, 22 deletions(-) delete mode 100644 tools/marvin/marvin/NoseTestExecuteEngine.py diff --git a/tools/marvin/marvin/NoseTestExecuteEngine.py b/tools/marvin/marvin/NoseTestExecuteEngine.py deleted file mode 100644 index 4e1b93688cc..00000000000 --- a/tools/marvin/marvin/NoseTestExecuteEngine.py +++ /dev/null @@ -1,22 +0,0 @@ -import nose -import nose.core - -class NoseTestExecuteEngine(object): - """ - Runs the CloudStack tests using nose as the execution engine - """ - - def __init__(self, testclient=None, clientLog=None, resultLog=None): - self.runner = \ - nose.core.TextTestRunner(stream=resultLog, - descriptions=True, verbosity=2, config=self.cfg) - - def runTests(self): - if self.workingdir is not None: - nose.core.TestProgram(argv=options, testRunner=self.runner, - config=self.cfg) - elif self.filename is not None: - tests = self.loader.loadTestsFromFile(self.filename) - nose.core.TestProgram(argv=options, testRunner=self.runner, - config=self.cfg) -