exclude '**/TestUnfixedBugs.class'
exclude '**/TestOneFile.class'
- systemProperties = System.properties
-
// set heap size for the test JVM(s)
minHeapSize = "128m"
maxHeapSize = "768m"
+
+ // Specifying the local via system properties did not work, so we set them this way
+ jvmArgs '-Duser.language=en -Duser.country=US'
// show standard out and standard error of the test JVM(s) on the console
//testLogging.showStandardStreams = true
systemProperties['user.dir'] = workingDir
systemProperties['POI.testdata.path'] = '../../test-data'
- //systemProperties['user.language'] = 'en'
- //systemProperties['user.country'] = 'US'
}
- test.beforeSuite { TestDescriptor suite ->
- System.setProperty('user.language', 'en')
- System.setProperty('user.country', 'US')
- }
-
jacoco {
toolVersion = '0.7.9'
}