Skip to content

Commit

Permalink
Attempt to fix failing Travis CI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
graemerocher committed Jul 7, 2014
1 parent 93be41b commit 9a9a5a2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion grails-test-suite-web/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ compileTestGroovy {

test {
maxParallelForks = 4
forkEvery = 100
forkEvery = 30
jvmArgs = ['-Xmx1024M','-XX:MaxPermSize=192m']
excludes = ["**/*TestCase.class",
"**/*\$*.class",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ class FilterExecutionTests extends AbstractGrailsControllerTests {

gcl.parseClass '''
import junit.framework.Assert
import grails.artefact.*
@Artefact("Filters")
class Filters {
def dependsOn = [Group1Filters]
Expand Down Expand Up @@ -165,6 +167,7 @@ class Filters {
}
}
@Artefact("Filters")
class Group1Filters {
def dependsOn = [Group3Filters]
Expand All @@ -183,6 +186,7 @@ class Group1Filters {
}
}
@Artefact("Filters")
class Group2Filters {
// these filters should run first since they have no dependencies
Expand All @@ -201,6 +205,7 @@ class Group2Filters {
}
}
@Artefact("Filters")
class Group3Filters {
// these filters should run after Group2Filters and before Group1Filters
Expand Down

0 comments on commit 9a9a5a2

Please sign in to comment.