Skip to content
Snippets Groups Projects
Commit c4137626 authored by felmer's avatar felmer
Browse files

SSDM-559: fixing bug for project deep_sequencing_unit.

SVN: 31902
parent 1d932fc8
No related branches found
No related tags found
No related merge requests found
......@@ -64,9 +64,11 @@ sourceSets {
}
task cleanDbSuite(type: Test) {
useTestNG()
options.suites('sourceTest/java/tests_system_cleandb_excluding_authorization.xml')
reports.html.destination = file("${project.buildDir}/reports/tests-cleandb")
useTestNG()
options.suites('sourceTest/java/tests_system_cleandb_excluding_authorization.xml')
if (delegate.getProperties().get('reports') != null) {
reports.html.destination = file("${project.buildDir}/reports/tests-cleandb")
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment