mirror of
https://github.com/mattermost/mattermost.git
synced 2026-05-28 04:35:04 -04:00
Some checks are pending
API / build (push) Waiting to run
Server CI / Compute Go Version (push) Waiting to run
Server CI / Check mocks (push) Blocked by required conditions
Server CI / Check go mod tidy (push) Blocked by required conditions
Server CI / check-style (push) Blocked by required conditions
Server CI / Check serialization methods for hot structs (push) Blocked by required conditions
Server CI / Vet API (push) Blocked by required conditions
Server CI / Check migration files (push) Blocked by required conditions
Server CI / Generate email templates (push) Blocked by required conditions
Server CI / Check store layers (push) Blocked by required conditions
Server CI / Check mmctl docs (push) Blocked by required conditions
Server CI / Postgres with binary parameters (push) Blocked by required conditions
Server CI / Postgres (push) Blocked by required conditions
Server CI / Postgres (FIPS) (push) Blocked by required conditions
Server CI / Generate Test Coverage (push) Blocked by required conditions
Server CI / Run mmctl tests (push) Blocked by required conditions
Server CI / Run mmctl tests (FIPS) (push) Blocked by required conditions
Server CI / Build mattermost server app (push) Blocked by required conditions
Web App CI / check-lint (push) Waiting to run
Web App CI / check-i18n (push) Waiting to run
Web App CI / check-types (push) Waiting to run
Web App CI / test (push) Waiting to run
Web App CI / build (push) Waiting to run
27 lines
933 B
Go
27 lines
933 B
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
//go:build enterprise
|
|
|
|
// This file is needed to ensure the enterprise code get complied
|
|
// when running tests. See https://mattermost.atlassian.net/browse/MM-54929
|
|
// for more details.
|
|
|
|
package commands
|
|
|
|
import (
|
|
// Enterprise Deps
|
|
_ "github.com/elastic/go-elasticsearch/v8"
|
|
_ "github.com/gorilla/handlers"
|
|
_ "github.com/hako/durafmt"
|
|
_ "github.com/hashicorp/memberlist"
|
|
_ "github.com/mattermost/gosaml2"
|
|
_ "github.com/mattermost/ldap"
|
|
_ "github.com/mattermost/mattermost/server/v8/channels/utils/testutils"
|
|
_ "github.com/mattermost/mattermost/server/v8/enterprise"
|
|
_ "github.com/mattermost/rsc/qr"
|
|
_ "github.com/prometheus/client_golang/prometheus"
|
|
_ "github.com/prometheus/client_golang/prometheus/collectors"
|
|
_ "github.com/prometheus/client_golang/prometheus/promhttp"
|
|
_ "github.com/tylerb/graceful"
|
|
)
|