From b338d303aa7078a84d50989ddc845a6ce938accf Mon Sep 17 00:00:00 2001 From: Victor Morales Date: Fri, 14 Sep 2018 14:33:28 -0700 Subject: Separate tests The current tests can be separated in two categories: unit test and integration tests. The criteria depends on the scope or dependencies required for the test. This change provides a mechanism to test only one category. Change-Id: Ib7bac49cb0b2d14544fb9704345436a7ba71aead Signed-off-by: Victor Morales Issue-ID: MULTICLOUD-301 --- src/k8splugin/csar/parser_test.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/k8splugin/csar') diff --git a/src/k8splugin/csar/parser_test.go b/src/k8splugin/csar/parser_test.go index cec5395e..93473bc6 100644 --- a/src/k8splugin/csar/parser_test.go +++ b/src/k8splugin/csar/parser_test.go @@ -1,3 +1,5 @@ +// +build integration + /* Copyright 2018 Intel Corporation. Licensed under the Apache License, Version 2.0 (the "License"); @@ -15,12 +17,13 @@ package csar import ( "io/ioutil" - "k8s.io/client-go/kubernetes" "log" "os" "plugin" "testing" + "k8s.io/client-go/kubernetes" + pkgerrors "github.com/pkg/errors" "gopkg.in/yaml.v2" -- cgit 1.2.3-korg