Skip to content

Commit

Permalink
[qfix] Exclude TestScaled_registry from parallel launch
Browse files Browse the repository at this point in the history
Signed-off-by: Nikita Skrynnik <nikita.skrynnik@xored.com>
  • Loading branch information
NikitaSkrynnik committed Dec 20, 2023
1 parent 37ca0a0 commit 5a9e89e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/networkservicemesh/integration-k8s-kind
go 1.20

require (
github.com/networkservicemesh/integration-tests v0.0.0-20231219130946-2529daf7d12c
github.com/networkservicemesh/integration-tests v0.0.0-20231220084734-6a7d46e31ff7
github.com/stretchr/testify v1.8.1
)

Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ github.com/networkservicemesh/gotestmd v0.0.0-20220628095933-eabbdc09e0dc h1:1L/
github.com/networkservicemesh/gotestmd v0.0.0-20220628095933-eabbdc09e0dc/go.mod h1:8EWnekTRNX+NxBdTFE24WqUoM7SgJHbiafDBrIIdOmQ=
github.com/networkservicemesh/integration-tests v0.0.0-20231219130946-2529daf7d12c h1:P9aHuPeLsxHUY+IWhuXEd+mp3W589Il4wHIODdbhzPc=
github.com/networkservicemesh/integration-tests v0.0.0-20231219130946-2529daf7d12c/go.mod h1:o3+iZ6iQvk2ukrAxQhaDOXUPhhQRW4O9BMi6YolZ4pI=
github.com/networkservicemesh/integration-tests v0.0.0-20231220084734-6a7d46e31ff7 h1:aU34GwGxP4MMimgTLyGX7+/qJbOkNLP/tFfBo4t/V1M=
github.com/networkservicemesh/integration-tests v0.0.0-20231220084734-6a7d46e31ff7/go.mod h1:o3+iZ6iQvk2ukrAxQhaDOXUPhhQRW4O9BMi6YolZ4pI=
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=
Expand Down
9 changes: 8 additions & 1 deletion tests_single/feature_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,13 @@ func TestRunFeatureSuite(t *testing.T) {
if *calicoFlag {
suite.Run(t, new(calicoFeatureSuite))
} else {
parallel.Run(t, new(features.Suite), "TestScale_from_zero", "TestVl3_dns", "TestVl3_scale_from_zero", "TestVl3_lb", "TestNse_composition", "TestSelect_forwarder")
parallel.Run(t, new(features.Suite),
"TestScale_from_zero",
"TestVl3_dns",
"TestVl3_scale_from_zero",
"TestVl3_lb",
"TestNse_composition",
"TestSelect_forwarder",
"TestScaled_registry")
}
}

0 comments on commit 5a9e89e

Please sign in to comment.