From a2170499d6115aa2882871b701b5b8c805a11151 Mon Sep 17 00:00:00 2001 From: Vladislav Byrgazov Date: Thu, 31 Oct 2024 15:15:24 +0500 Subject: [PATCH] Isolate TestIpam_policies from parallel running Signed-off-by: Vladislav Byrgazov --- go.mod | 2 +- go.sum | 4 ++-- tests_single/feature_test.go | 3 ++- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/go.mod b/go.mod index cb4ca7c9..d6a1f396 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,7 @@ module github.com/networkservicemesh/integration-k8s-kind go 1.20 require ( - github.com/networkservicemesh/integration-tests v0.0.0-20240923100516-0f5a7c947c8d + github.com/networkservicemesh/integration-tests v0.0.0-20241028173639-dbaeaa8f3386 github.com/stretchr/testify v1.8.4 ) diff --git a/go.sum b/go.sum index 42128b11..a474fc65 100644 --- a/go.sum +++ b/go.sum @@ -14,8 +14,8 @@ github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= github.com/networkservicemesh/gotestmd v0.0.0-20220628095933-eabbdc09e0dc h1:1L/OisEFsOyhwaqeJpYmM1nlJ2dBusUMiszPDBlUip0= github.com/networkservicemesh/gotestmd v0.0.0-20220628095933-eabbdc09e0dc/go.mod h1:8EWnekTRNX+NxBdTFE24WqUoM7SgJHbiafDBrIIdOmQ= -github.com/networkservicemesh/integration-tests v0.0.0-20240923100516-0f5a7c947c8d h1:cOaU0HaIkJw4cWLIo6c+hw94TbUx/Shi7haVVEl5sNA= -github.com/networkservicemesh/integration-tests v0.0.0-20240923100516-0f5a7c947c8d/go.mod h1:cT5l2gQd8TEjjgoxLEEF9oR2DB4AH/KlLQEeNvba4U4= +github.com/networkservicemesh/integration-tests v0.0.0-20241028173639-dbaeaa8f3386 h1:r9QojB2eoXtDcRmCRVO2yJfNQWYHJvCD+4kC1bqOVys= +github.com/networkservicemesh/integration-tests v0.0.0-20241028173639-dbaeaa8f3386/go.mod h1:cT5l2gQd8TEjjgoxLEEF9oR2DB4AH/KlLQEeNvba4U4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= diff --git a/tests_single/feature_test.go b/tests_single/feature_test.go index 7ae018a5..ba1f2a6a 100644 --- a/tests_single/feature_test.go +++ b/tests_single/feature_test.go @@ -64,6 +64,7 @@ func TestRunFeatureSuite(t *testing.T) { featuresSuite.TestVl3_ipv6, featuresSuite.TestNse_composition, featuresSuite.TestSelect_forwarder, - featuresSuite.TestScaled_registry)) + featuresSuite.TestScaled_registry, + featuresSuite.TestIpam_policies)) } }