From 5a723befecd2196a629da0f2ba84b194284e3308 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Wed, 3 Jan 2024 20:23:57 +0000 Subject: [PATCH] Move FQDN tests to its own group. (#3929) (#3995) Co-authored-by: Pierre HILBERT (cherry picked from commit 3f5624b6ca57d0e1d5460fb94b9e521bacbb206a) Co-authored-by: Blake Rouse --- testing/integration/fqdn_test.go | 2 +- testing/integration/groups_test.go | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/testing/integration/fqdn_test.go b/testing/integration/fqdn_test.go index 883ea1090a2..373f8536f8a 100644 --- a/testing/integration/fqdn_test.go +++ b/testing/integration/fqdn_test.go @@ -33,7 +33,7 @@ import ( func TestFQDN(t *testing.T) { info := define.Require(t, define.Requirements{ - Group: Default, // placed in default only because its skipped + Group: FQDN, OS: []define.OS{ {Type: define.Linux}, }, diff --git a/testing/integration/groups_test.go b/testing/integration/groups_test.go index 64d8cd7cf02..edf22180809 100644 --- a/testing/integration/groups_test.go +++ b/testing/integration/groups_test.go @@ -18,6 +18,9 @@ const ( // FleetAirgapped group of tests. Used for testing Elastic Agent with Fleet and airgapped. FleetAirgapped = "fleet-airgapped" + // FQDN group of tests. Used for testing Elastic Agent with FQDN enabled. + FQDN = "fqdn" + // Upgrade group of tests. Used for testing upgrades. Upgrade = "upgrade" )