diff --git a/.github/workflows/test-go.yaml b/.github/workflows/test-go.yaml index 3c97cc5414df..fa059a615adf 100644 --- a/.github/workflows/test-go.yaml +++ b/.github/workflows/test-go.yaml @@ -113,7 +113,7 @@ jobs: - name: Run Go Tests run: | if [[ "${{ matrix.suite }}" == "core" ]]; then - RUN_TESTS_ARG='-skip=^TestIntegrations' + RUN_TESTS_ARG='-skip=^TestIntegrations -skip=^TestUp_' elif [[ "${{ matrix.suite }}" == "integration" ]]; then RUN_TESTS_ARG='-run=^TestIntegrations' else diff --git a/cmd/fleetctl/preview_test.go b/cmd/fleetctl/preview_test.go index 76c68eb19010..c3a75a73e1b0 100644 --- a/cmd/fleetctl/preview_test.go +++ b/cmd/fleetctl/preview_test.go @@ -12,7 +12,7 @@ import ( "github.com/stretchr/testify/require" ) -func TestPreview(t *testing.T) { +func TestIntegrationsPreview(t *testing.T) { nettest.Run(t) t.Setenv("FLEET_SERVER_ADDRESS", "https://localhost:8412") @@ -74,6 +74,7 @@ func gitRootPath(t *testing.T) string { } func TestDockerCompose(t *testing.T) { + t.Parallel() t.Run("returns the right command according to the version", func(t *testing.T) { v1 := dockerCompose{dockerComposeV1} cmd1 := v1.Command("up") diff --git a/server/cron/calendar_cron_test.go b/server/cron/calendar_cron_test.go index b4cb9141b956..3e780ee515e6 100644 --- a/server/cron/calendar_cron_test.go +++ b/server/cron/calendar_cron_test.go @@ -401,6 +401,7 @@ func (n notFoundErr) Error() string { } func TestCalendarEvents1KHosts(t *testing.T) { + t.Parallel() ds := new(mock.Store) ctx := context.Background() var logger kitlog.Logger