Skip to content
This repository was archived by the owner on Apr 2, 2021. It is now read-only.

Commit 4376ea8

Browse files
committed
Fix failing tests (#534)
1 parent 7025dd9 commit 4376ea8

File tree

10 files changed

+42
-454
lines changed

10 files changed

+42
-454
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ task proxyTest(type:Test, dependsOn: ['test','jar']) {
307307
include '**/tests/*ProxyTest*'
308308
systemProperty 'integrationTestProjectVersion', version
309309
testClassesDirs = sourceSets.functionalTest.output.classesDirs
310-
classpath += sourceSets.functionalTest.runtimeClasspath + configurations.proxyTest
310+
classpath = configurations.proxyTest + sourceSets.functionalTest.runtimeClasspath
311311
}
312312

313313
/**
@@ -348,7 +348,7 @@ codenarc{
348348
maxPriority2Violations = 0
349349
maxPriority3Violations = 500
350350
codenarcTest {
351-
configFile = rootProject.file('config/codenarc/ruleset-test.groovy')
351+
configFile = rootProject.file('config/codenarc/ruleset-functionalTest.groovy')
352352
}
353353
}
354354

0 commit comments

Comments
 (0)