2021-02-22 17:27:13 +05:30
|
|
|
package artifacts
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"gitlab.com/gitlab-org/labkit/log"
|
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
"gitlab.com/gitlab-org/gitlab/workhorse/internal/testhelper"
|
2021-02-22 17:27:13 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
|
|
|
if err := testhelper.BuildExecutables(); err != nil {
|
|
|
|
log.WithError(err).Fatal()
|
|
|
|
}
|
|
|
|
|
|
|
|
os.Exit(m.Run())
|
|
|
|
|
|
|
|
}
|