Skip to content

Commit

Permalink
Fix apache#2834: kustomize 2e2 test should be executed last
Browse files Browse the repository at this point in the history
  • Loading branch information
johnpoth authored and bouskaJ committed Apr 7, 2022
1 parent 92aff8c commit 1c555da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/e2e-kubernetes/exec-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,10 @@ export CAMEL_K_TEST_SAVE_FAILED_TEST_NAMESPACE=${SAVE_FAILED_TEST_NS}
set -e
exit_code=0
make test-integration || exit_code=1
make test-registry-maven-wagon || exit_code=1
make test-service-binding || exit_code=1
make test-quarkus-native || exit_code=1
make test-kustomize || exit_code=1
make test-registry-maven-wagon || exit_code=1
set +e

echo "Tests completed with exit code: ${exit_code}"
Expand Down
2 changes: 1 addition & 1 deletion e2e/registry/registry_maven_wagon_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func TestImageRegistryIsAMavenRepository(t *testing.T) {
"--name", name,
"-p", "location=.?filename=laugh.txt",
"-d", "file://files/laugh.txt",
"-n", "camel-k",
"-n", ns,
).Execute()).To(Succeed())

Eventually(IntegrationPodPhase(ns, name), TestTimeoutMedium).Should(Equal(corev1.PodRunning))
Expand Down

0 comments on commit 1c555da

Please sign in to comment.