summaryrefslogtreecommitdiffstats
path: root/tests/e2e
diff options
context:
space:
mode:
authorsilverwind <me@silverwind.io>2024-04-22 13:48:42 +0200
committerGitHub <noreply@github.com>2024-04-22 11:48:42 +0000
commit74f0c84fa4245a20ce6fb87dac1faf2aeeded2a2 (patch)
tree94b0356bea5ad1cd24a523947cf001509a973be1 /tests/e2e
parentaff7b7bdd285cc1fcabea774f153886e11ae9f5d (diff)
downloadgitea-74f0c84fa4245a20ce6fb87dac1faf2aeeded2a2.tar.gz
gitea-74f0c84fa4245a20ce6fb87dac1faf2aeeded2a2.zip
Enable more `revive` linter rules (#30608)
Noteable additions: - `redefines-builtin-id` forbid variable names that shadow go builtins - `empty-lines` remove unnecessary empty lines that `gofumpt` does not remove for some reason - `superfluous-else` eliminate more superfluous `else` branches Rules are also sorted alphabetically and I cleaned up various parts of `.golangci.yml`.
Diffstat (limited to 'tests/e2e')
-rw-r--r--tests/e2e/e2e_test.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/e2e/e2e_test.go b/tests/e2e/e2e_test.go
index d15aa9a027..c8a792d6a3 100644
--- a/tests/e2e/e2e_test.go
+++ b/tests/e2e/e2e_test.go
@@ -102,18 +102,20 @@ func TestE2e(t *testing.T) {
cmd := exec.Command(runArgs[0], runArgs...)
cmd.Env = os.Environ()
cmd.Env = append(cmd.Env, fmt.Sprintf("GITEA_URL=%s", setting.AppURL))
+
var stdout, stderr bytes.Buffer
cmd.Stdout = &stdout
cmd.Stderr = &stderr
+
err := cmd.Run()
if err != nil {
// Currently colored output is conflicting. Using Printf until that is resolved.
fmt.Printf("%v", stdout.String())
fmt.Printf("%v", stderr.String())
log.Fatal("Playwright Failed: %s", err)
- } else {
- fmt.Printf("%v", stdout.String())
}
+
+ fmt.Printf("%v", stdout.String())
})
})
}