From 35e36d982198397b82cc26c3eff7372b60cdeb9f Mon Sep 17 00:00:00 2001 From: Laszlo Kiraly Date: Tue, 8 Feb 2022 16:32:15 +0100 Subject: [PATCH] Add more remote vlan examples (deployments-k8s#4433) Added remote vlan examples entry point Increase timeout Related PR: deployments-k8s/#4465 Signed-off-by: Laszlo Kiraly --- .github/workflows/ci.yaml | 2 +- entry_point_test.go | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7668dc27e..a4530f318 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -106,7 +106,7 @@ jobs: working-directory: ${{ github.workspace }}/src/github.com/${{ github.repository }} - name: Integration tests run: | - go test -count 1 -timeout 1h20m -race -v -run Single + go test -count 1 -timeout 2h15m -race -v -run Single env: ARTIFACTS_DIR: ${{ matrix.image }}-logs/${{ matrix.image }} working-directory: ${{ github.workspace }}/src/github.com/${{ github.repository }} diff --git a/entry_point_test.go b/entry_point_test.go index 5e1841d20..45d53e7d9 100644 --- a/entry_point_test.go +++ b/entry_point_test.go @@ -1,4 +1,5 @@ // Copyright (c) 2021-2022 Doc.ai and/or its affiliates. +// Copyright (c) 2022 Nordix and/or its affiliates. // // SPDX-License-Identifier: Apache-2.0 // @@ -27,6 +28,7 @@ import ( "github.com/networkservicemesh/integration-tests/suites/interdomain" "github.com/networkservicemesh/integration-tests/suites/memory" "github.com/networkservicemesh/integration-tests/suites/observability" + "github.com/networkservicemesh/integration-tests/suites/remotevlan" ) func TestRunHealSuiteSingle(t *testing.T) { @@ -45,6 +47,10 @@ func TestRunMemorySuiteSingle(t *testing.T) { suite.Run(t, new(memory.Suite)) } +func TestRunRvlanSuiteSingle(t *testing.T) { + suite.Run(t, new(remotevlan.Suite)) +} + func TestRunObservabilitySuiteSingle(t *testing.T) { suite.Run(t, new(observability.Suite)) }