Skip to content

Commit ae2015b

Browse files
authored
removed example apps from IT test (#318)
1 parent 34c8b88 commit ae2015b

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

src/test/groovy/com/cloudogu/gitops/integration/JenkinsPipelineTestLongIT.groovy

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -89,13 +89,6 @@ class JenkinsPipelineTestLongIT {
8989
assertThat(findUrl()).contains('.') //
9090
}
9191

92-
@Test
93-
void checkExpectedJenkinsJobs() {
94-
JenkinsHandler js = new JenkinsHandler(findUrl())
95-
List<Job> jobs = js.buildJobList()
96-
assertThat(jobs.size()).isEqualTo(numberOfExampleRepos)
97-
}
98-
9992
@Test
10093
void checkJenkinsIsAvailable() {
10194
JenkinsHandler js = new JenkinsHandler(findUrl())
@@ -104,7 +97,13 @@ class JenkinsPipelineTestLongIT {
10497
assertThat(jenkins.running).isTrue()
10598
}
10699

107-
100+
//Disabled for now. We can re-enable this when we use ContentLoader in JenkinsTests.
101+
/*@Test
102+
void checkExpectedJenkinsJobs() {
103+
JenkinsHandler js = new JenkinsHandler(findUrl())
104+
List<Job> jobs = js.buildJobList()
105+
assertThat(jobs.size()).isEqualTo(numberOfExampleRepos)
106+
}
108107
@Test
109108
void wholeJenkinsPipelineTest() {
110109
PipelineExecutor executor = new PipelineExecutor()
@@ -161,7 +160,7 @@ class JenkinsPipelineTestLongIT {
161160
fail("Unexpected error during execution of gitops playground e2e:\n", err)
162161
}
163162
}
164-
163+
*/
165164
static void writeBuildLogToFile(BuildWithDetails buildDetails) {
166165

167166
String directoryName = "playground-logs-of-failed-jobs/"

0 commit comments

Comments
 (0)