don't use build tags to mark integration tests

This commit is contained in:
Mike Danese
2017-01-31 15:55:39 -08:00
parent 9fbefe3b97
commit 21617a60ae
58 changed files with 1084 additions and 65 deletions

View File

@@ -11,7 +11,9 @@ load(
go_library(
name = "go_default_library",
srcs = ["util.go"],
tags = ["automanaged"],
tags = [
"automanaged",
],
deps = [
"//pkg/api:go_default_library",
"//pkg/api/v1:go_default_library",
@@ -36,7 +38,10 @@ go_test(
"scheduler_test.go",
],
library = ":go_default_library",
tags = ["automanaged"],
tags = [
"automanaged",
"integration",
],
deps = [
"//pkg/api/v1:go_default_library",
"//plugin/pkg/scheduler:go_default_library",