mirror of
https://github.com/go-gitea/gitea.git
synced 2026-05-28 15:55:26 +00:00
15 lines
210 B
Go
15 lines
210 B
Go
// Copyright 2026 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package pipeline
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"gitea.dev/modules/git"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
git.RunGitTests(m)
|
|
}
|