Skip to content

Commit

Permalink
Merge pull request #860 from NikitaSkrynnik/rvlan-multi-svc
Browse files Browse the repository at this point in the history
Run rvlan suites in parallel
  • Loading branch information
denis-tingaikin authored Aug 21, 2023
2 parents b4269e7 + f5ef243 commit 44a08ec
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 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-20230810005523-dc1c1a801d55
github.com/networkservicemesh/integration-tests v0.0.0-20230817133421-088887006f7e
github.com/stretchr/testify v1.8.1
)

Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -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-20230810005523-dc1c1a801d55 h1:sStzd4p44rbQgqHSHjbjcUnH7rj7eWgpLku2uLDUG+g=
github.com/networkservicemesh/integration-tests v0.0.0-20230810005523-dc1c1a801d55/go.mod h1:o3+iZ6iQvk2ukrAxQhaDOXUPhhQRW4O9BMi6YolZ4pI=
github.com/networkservicemesh/integration-tests v0.0.0-20230817133421-088887006f7e h1:xNNqNIdsAm0ytull/P3SH1TnPWKV8POTIZo/9Qkjxb0=
github.com/networkservicemesh/integration-tests v0.0.0-20230817133421-088887006f7e/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
16 changes: 10 additions & 6 deletions tests_single/rvlan_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Cisco and/or its affiliates.
// Copyright (c) 2022-2023 Cisco and/or its affiliates.
//
// SPDX-License-Identifier: Apache-2.0
//
Expand All @@ -19,11 +19,15 @@ package single
import (
"testing"

"github.com/stretchr/testify/suite"

"github.com/networkservicemesh/integration-tests/suites/remotevlan"
"github.com/networkservicemesh/integration-tests/extensions/parallel"
"github.com/networkservicemesh/integration-tests/suites/remotevlan_ovs"
"github.com/networkservicemesh/integration-tests/suites/remotevlan_vpp"
)

func TestRunRvlanSuite(t *testing.T) {
suite.Run(t, new(remotevlan.Suite))
func TestRunRvlanVPPSuite(t *testing.T) {
parallel.Run(t, new(remotevlan_vpp.Suite))
}

func TestRunRvlanOVSSuite(t *testing.T) {
parallel.Run(t, new(remotevlan_ovs.Suite))
}

0 comments on commit 44a08ec

Please sign in to comment.