We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 363bcaa commit 5c8b462Copy full SHA for 5c8b462
e2e/main.go
@@ -38,9 +38,11 @@ type Project struct {
38
func getVCSClient() (VCSClient, error) {
39
40
if os.Getenv("ATLANTISBOT_GITHUB_USERNAME") != "" {
41
+ log.Print("Running tests for github")
42
return NewGithubClient(), nil
43
}
44
if os.Getenv("ATLANTISBOT_GITLAB_USERNAME") != "" {
45
+ log.Print("Running tests for gitlab")
46
return NewGitlabClient(), nil
47
48
scripts/e2e.sh
@@ -29,7 +29,6 @@ cd "${GITHUB_WORKSPACE:-$(git rev-parse --show-toplevel)}/e2e"
29
echo "Running 'make build'"
30
make build
31
32
-exit 0
33
echo "Running e2e test: 'make run'"
34
set +e
35
make run
0 commit comments