Skip to content
Snippets Groups Projects
Commit ee5516a8 authored by anttil's avatar anttil
Browse files

SWE-22 / SP-641: run both test suites of project 'openbis'

SVN: 29000
parent 2540d7c3
No related branches found
No related tags found
No related merge requests found
...@@ -34,12 +34,13 @@ repositories { ...@@ -34,12 +34,13 @@ repositories {
} }
test { test {
useTestNG() useTestNG {
options { suites(file('sourceTest/java/tests.xml')) } suites = ['sourceTest/java/tests.xml']
}
jvmArgs '-Xmx2048m', '-XX:MaxPermSize=256m'
jvmArgs '-Xmx2048m', '-XX:MaxPermSize=256m'
testLogging.showStandardStreams = true
testLogging.showStandardStreams = true
} }
task sourceJar(type: Jar) { task sourceJar(type: Jar) {
......
...@@ -116,3 +116,9 @@ task copyTestData(type: Copy, dependsOn: testClasses) { ...@@ -116,3 +116,9 @@ task copyTestData(type: Copy, dependsOn: testClasses) {
test.dependsOn(copyTestData) test.dependsOn(copyTestData)
test {
useTestNG {
suites.add('sourceTest/java/tests_system_cleandb_excluding_authorization.xml')
}
}
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