Skip to content

Commit

Permalink
Add more remote vlan examples (deployments-k8s#4433)
Browse files Browse the repository at this point in the history
Related PR: deployments-k8s/#4465
Added entry point for remote vlan examples
Adjusted test timeout

Signed-off-by: Laszlo Kiraly <laszlo.kiraly@est.tech>
  • Loading branch information
ljkiraly committed Aug 29, 2022
1 parent 1f1ce74 commit 48b49d9
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 @@ -113,7 +113,7 @@ jobs:
echo CLUSTER_CIDR="172.18.1.128/25" >> $GITHUB_ENV
- name: Integration tests
run: |
go test -count 1 -timeout 1h35m -race -v -run Single
go test -count 1 -timeout 1h55m -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 main_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.
//
// Copyright (c) 2022 Cisco and/or its affiliates.
//
Expand Down Expand Up @@ -29,6 +30,7 @@ import (
"github.com/networkservicemesh/integration-tests/suites/k8s_monolith"
"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 @@ -47,6 +49,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 48b49d9

Please sign in to comment.