Skip to content

Commit

Permalink
revert misc changes
Browse files Browse the repository at this point in the history
Signed-off-by: Maciej Mierzwa <[email protected]>
  • Loading branch information
MaciejMierzwa committed Oct 4, 2023
1 parent 46eb723 commit 10fe305
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 16 deletions.
22 changes: 13 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,10 @@ test {
if (JavaVersion.current() > JavaVersion.VERSION_1_8) {
jvmArgs += "--add-opens=java.base/java.io=ALL-UNNAMED"
}
retry {
failOnPassedAfterRetry = false
maxRetries = 5
}
jacoco {
excludes = [
"com.sun.jndi.dns.*",
Expand Down Expand Up @@ -241,10 +245,10 @@ def setCommonTestConfig(Test task) {
if (JavaVersion.current() > JavaVersion.VERSION_1_8) {
task.jvmArgs += "--add-opens=java.base/java.io=ALL-UNNAMED"
}
// task.retry {
// failOnPassedAfterRetry = false
// maxRetries = 5
// }
task.retry {
failOnPassedAfterRetry = false
maxRetries = 5
}
task.jacoco {
excludes = [
"com.sun.jndi.dns.*",
Expand Down Expand Up @@ -460,11 +464,11 @@ task integrationTest(type: Test) {
systemProperty "java.util.logging.manager", "org.apache.logging.log4j.jul.LogManager"
testClassesDirs = sourceSets.integrationTest.output.classesDirs
classpath = sourceSets.integrationTest.runtimeClasspath
// retry {
// failOnPassedAfterRetry = false
// maxRetries = 2
// maxFailures = 10
// }
retry {
failOnPassedAfterRetry = false
maxRetries = 2
maxFailures = 10
}
//run the integrationTest task after the test task
shouldRunAfter test
}
Expand Down
7 changes: 0 additions & 7 deletions checkstyle/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -219,13 +219,6 @@
<property name="severity" value="error"/>
</module>

<module name="RegexpSingleline">
<property name="format" value="println"/>
<property name="ignoreCase" value="true"/>
<property name="message" value="SYSTEM.OUT.PRINTLN NONONO!" />
<property name="severity" value="error"/>
</module>

<module name="RegexpSingleline">
<property name="format" value="extension"/>
<property name="ignoreCase" value="true"/>
Expand Down

0 comments on commit 10fe305

Please sign in to comment.