Switch "all" test pipeline job runners to mean the job runners that run at The Broad.

This commit is contained in:
Khalid Shakir 2013-06-27 15:07:59 -04:00
parent acf90ca027
commit ec206eccfc
1 changed files with 7 additions and 4 deletions

View File

@ -45,11 +45,14 @@ object PipelineTest extends BaseTest with Logging {
private val validationReportsDataLocation = "/humgen/gsa-hpprojects/GATK/validationreports/submitted/" private val validationReportsDataLocation = "/humgen/gsa-hpprojects/GATK/validationreports/submitted/"
private val md5DB = new MD5DB() private val md5DB = new MD5DB()
final val allJobRunners = { /**
val commandLinePluginManager = new CommandLinePluginManager * All the job runners configured to run PipelineTests at The Broad.
commandLinePluginManager.getPlugins.map(commandLinePluginManager.getName(_)).toSeq */
} final val allJobRunners = Seq("Lsf706", "GridEngine", "Shell")
/**
* The default job runners to run.
*/
final val defaultJobRunners = Seq("Lsf706", "GridEngine") final val defaultJobRunners = Seq("Lsf706", "GridEngine")
/** /**