Skip to content

Commit

Permalink
ForgeRunConfigTest: Don't use config cache
Browse files Browse the repository at this point in the history
The custom adhoc tasks don't support it and it's not worth it
to rewrite them.
  • Loading branch information
Juuxel committed Dec 6, 2024
1 parent 1b3dc0f commit ef2f09a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class ForgeRunConfigTest extends Specification implements GradleProjectTestTrait
""".stripIndent()

when:
def result = gradle.run(task: "verifyRunConfigs")
def result = gradle.run(task: "verifyRunConfigs", configurationCache: false)

then:
result.task(":verifyRunConfigs").outcome == SUCCESS
Expand Down Expand Up @@ -121,7 +121,7 @@ class ForgeRunConfigTest extends Specification implements GradleProjectTestTrait
'''.stripIndent()

when:
def result = gradle.run(task: "verifyRunConfigs")
def result = gradle.run(task: "verifyRunConfigs", configurationCache: false)

then:
result.task(":verifyRunConfigs").outcome == SUCCESS
Expand Down

0 comments on commit ef2f09a

Please sign in to comment.