diff options
author | Dominik Stadler <centic@apache.org> | 2018-08-23 20:23:30 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2018-08-23 20:23:30 +0000 |
commit | e785364c0c79352c96a58d01575b62974fe50469 (patch) | |
tree | b35aae6791cef7cb08e9da9670c7ffd453931d89 /build.gradle | |
parent | 1ca97efb51f5c29b650f000929d498017938aaf9 (diff) | |
download | poi-e785364c0c79352c96a58d01575b62974fe50469.tar.gz poi-e785364c0c79352c96a58d01575b62974fe50469.zip |
Exclude some test-suites in build.gradle to not execute tests multiple times
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1838765 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle index ed3c55224b..79f7d90629 100644 --- a/build.gradle +++ b/build.gradle @@ -121,6 +121,10 @@ subprojects { exclude '**/TestUnfixedBugs.class' exclude '**/TestOneFile.class' + // Exclude Test Suites + exclude '**/All*Tests.class' + exclude '**/HSSFTests.class' + // set heap size for the test JVM(s) minHeapSize = "128m" maxHeapSize = "768m" |