diff --git a/e2e/main.go b/e2e/main.go index 8e687bac62..96913943db 100644 --- a/e2e/main.go +++ b/e2e/main.go @@ -38,9 +38,11 @@ type Project struct { func getVCSClient() (VCSClient, error) { if os.Getenv("ATLANTISBOT_GITHUB_USERNAME") != "" { + log.Print("Running tests for github") return NewGithubClient(), nil } if os.Getenv("ATLANTISBOT_GITLAB_USERNAME") != "" { + log.Print("Running tests for gitlab") return NewGitlabClient(), nil } diff --git a/scripts/e2e.sh b/scripts/e2e.sh index 56d1caced3..65d6d2bf14 100755 --- a/scripts/e2e.sh +++ b/scripts/e2e.sh @@ -29,7 +29,6 @@ cd "${GITHUB_WORKSPACE:-$(git rev-parse --show-toplevel)}/e2e" echo "Running 'make build'" make build -exit 0 echo "Running e2e test: 'make run'" set +e make run