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

Commit

Permalink
Fix failing tests (#534)
Browse files Browse the repository at this point in the history
  • Loading branch information
johndevs committed Dec 18, 2018
1 parent 7025dd9 commit 4376ea8
Show file tree
Hide file tree
Showing 10 changed files with 42 additions and 454 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ task proxyTest(type:Test, dependsOn: ['test','jar']) {
include '**/tests/*ProxyTest*'
systemProperty 'integrationTestProjectVersion', version
testClassesDirs = sourceSets.functionalTest.output.classesDirs
classpath += sourceSets.functionalTest.runtimeClasspath + configurations.proxyTest
classpath = configurations.proxyTest + sourceSets.functionalTest.runtimeClasspath
}

/**
Expand Down Expand Up @@ -348,7 +348,7 @@ codenarc{
maxPriority2Violations = 0
maxPriority3Violations = 500
codenarcTest {
configFile = rootProject.file('config/codenarc/ruleset-test.groovy')
configFile = rootProject.file('config/codenarc/ruleset-functionalTest.groovy')
}
}

Expand Down
Loading

0 comments on commit 4376ea8

Please sign in to comment.