Skip to content

Commit

Permalink
Skip TestRepoCommitsStatusParallel on CI (#24741)
Browse files Browse the repository at this point in the history
Related: #22109

Co-authored-by: Giteabot <[email protected]>
  • Loading branch information
silverwind and GiteaBot authored May 16, 2023
1 parent d81659d commit e720f49
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/integration/repo_commits_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import (
"fmt"
"net/http"
"net/http/httptest"
"os"
"path"
"sync"
"testing"
Expand Down Expand Up @@ -134,6 +135,9 @@ func TestRepoCommitsWithStatusRunning(t *testing.T) {
}

func TestRepoCommitsStatusParallel(t *testing.T) {
if os.Getenv("CI") != "" {
t.Skip("Skipping because test is flaky on CI")
}
defer tests.PrepareTestEnv(t)()

session := loginUser(t, "user2")
Expand Down

0 comments on commit e720f49

Please sign in to comment.