summaryrefslogtreecommitdiff
path: root/workhorse/internal/artifacts/artifacts_test.go
blob: b9a42cc60c10a066e10c4522f94518bb47c21256 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package artifacts

import (
	"os"
	"testing"

	"gitlab.com/gitlab-org/labkit/log"

	"gitlab.com/gitlab-org/gitlab-workhorse/internal/testhelper"
)

func TestMain(m *testing.M) {
	if err := testhelper.BuildExecutables(); err != nil {
		log.WithError(err).Fatal()
	}

	os.Exit(m.Run())

}