mirror of https://github.com/apache/poi.git
move setting of locale for tests to top level build.gradle
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1915910 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1bb5f644f1
commit
386ddb8e6b
|
@ -334,6 +334,10 @@ subprojects {
|
|||
}
|
||||
|
||||
test {
|
||||
// use US locale for tests
|
||||
systemProperty "user.language", "en"
|
||||
systemProperty "user.country", "US"
|
||||
|
||||
// make XML test-results available for Jenkins CI
|
||||
useJUnitPlatform()
|
||||
reports {
|
||||
|
|
|
@ -169,10 +169,6 @@ artifacts {
|
|||
}
|
||||
|
||||
test {
|
||||
// use US locale for tests
|
||||
systemProperty "user.language", "en"
|
||||
systemProperty "user.country", "US"
|
||||
|
||||
dependsOn { testJar }
|
||||
|
||||
systemProperties['junit.jupiter.execution.parallel.enabled'] = 'true'
|
||||
|
|
Loading…
Reference in New Issue