// Copyright (c) 2021 Gitpod GmbH. All rights reserved.1// Licensed under the GNU Affero General Public License (AGPL).2// See License.AGPL.txt in the project root for license information.34package workspace56import (7"context"8"os"9"testing"1011"github.com/gitpod-io/gitpod/test/pkg/integration"12"sigs.k8s.io/e2e-framework/pkg/env"13)1415var (16testEnv env.Environment17username string18namespace string19kubeconfig string20gitlab bool21)2223func TestMain(m *testing.M) {24username, namespace, testEnv, _, kubeconfig, gitlab = integration.Setup(context.Background())25os.Exit(testEnv.Run(m))26}272829