Skip to content

Commit 037f549

Browse files
committed
Fix build integration tests
1 parent 5ddee42 commit 037f549

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/fixtures/AbstractGitAwareGradleFuncTest.groovy

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ abstract class AbstractGitAwareGradleFuncTest extends AbstractGradleFuncTest {
2323

2424
def setup() {
2525
remoteGitRepo = new File(setupGitRemote(), '.git')
26+
println "remoteGitRepo = ${remoteGitRepo.absolutePath}"
2627
execute("git clone ${remoteGitRepo.absolutePath} cloned", testProjectDir.root)
2728
buildFile = new File(testProjectDir.root, 'cloned/build.gradle')
2829
settingsFile = new File(testProjectDir.root, 'cloned/settings.gradle')

build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/test/rest/LegacyYamlRestTestPluginFuncTest.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ class LegacyYamlRestTestPluginFuncTest extends AbstractRestResourcesFuncTest {
137137
"""
138138

139139
when:
140-
def result = gradleRunner("yamlRestTest", "--console", 'plain').buildAndFail()
140+
def result = gradleRunner("yamlRestTest", "--console", 'plain', '--stacktrace').buildAndFail()
141141

142142
then:
143143
result.task(":distribution:archives:integ-test-zip:buildExpanded").outcome == TaskOutcome.SUCCESS

0 commit comments

Comments
 (0)