Skip to content

Commit

Permalink
Add more remote vlan examples (deployments-k8s#4433)
Browse files Browse the repository at this point in the history
Added remote vlan examples entry point
Increase timeout

Related PR: deployments-k8s/#4465

Signed-off-by: Laszlo Kiraly <[email protected]>
  • Loading branch information
ljkiraly committed Mar 21, 2022
1 parent a346597 commit 35e36d9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
6 changes: 6 additions & 0 deletions entry_point_test.go
Original file line number Diff line number Diff line change
@@ -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
//
Expand Down Expand Up @@ -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) {
Expand All @@ -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))
}
Expand Down

0 comments on commit 35e36d9

Please sign in to comment.