Skip to content

Commit

Permalink
Merge pull request #183 from networkservicemesh/observability-suite
Browse files Browse the repository at this point in the history
Add observability suite
  • Loading branch information
denis-tingaikin authored Jan 25, 2022
2 parents 3cad108 + 7c9aef7 commit c818230
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion main_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 Doc.ai and/or its affiliates.
// Copyright (c) 2021-2022 Doc.ai and/or its affiliates.
//
// SPDX-License-Identifier: Apache-2.0
//
Expand All @@ -25,6 +25,7 @@ import (
"github.com/networkservicemesh/integration-tests/suites/features"
"github.com/networkservicemesh/integration-tests/suites/heal"
"github.com/networkservicemesh/integration-tests/suites/memory"
"github.com/networkservicemesh/integration-tests/suites/observability"
)

func TestRunFeatureSuite(t *testing.T) {
Expand All @@ -42,3 +43,7 @@ func TestRunMemorySuite(t *testing.T) {
func TestRunHealSuite(t *testing.T) {
suite.Run(t, new(heal.Suite))
}

func TestRunObservabilitySuite(t *testing.T) {
suite.Run(t, new(observability.Suite))
}

0 comments on commit c818230

Please sign in to comment.