Merge pull request #447 from broadinstitute/dr_segregate_kb_tests

Separate tests that access the knowledge base from other tests
This commit is contained in:
Eric Banks 2013-12-06 08:43:07 -08:00
commit 7ed5344f8b
1 changed files with 7 additions and 0 deletions

View File

@ -1415,6 +1415,13 @@
<run-test testtype="${pipetype}" outputdir="${report}/${pipetype}" runfailed="false"/>
</target>
<target name="knowledgebasetest" depends="test.compile,test.init" description="Run knowledge base tests">
<condition property="ktype" value="*KnowledgeBaseTest" else="${single}">
<not><isset property="single"/></not>
</condition>
<run-test testtype="${ktype}" outputdir="${report}/${ktype}" runfailed="false"/>
</target>
<target name="failed-unit" depends="test.compile,test.init">
<run-test testtype="${report}/*UnitTest/testng-failed.xml" outputdir="${report}/failed_rerun" runfailed="true"/>
</target>