sourcegraph/dev/authtest/BUILD.bazel

27 lines
693 B
Python

load("//dev:go_defs.bzl", "go_test")
go_test(
name = "authtest_test",
timeout = "short",
srcs = [
"code_intel_test.go",
"main_test.go",
"organization_test.go",
"repository_test.go",
"site_admin_test.go",
],
tags = [TAG_PLATFORM_SOURCE],
visibility = ["//testing:__subpackages__"],
deps = [
"//internal/auth",
"//internal/extsvc",
"//internal/gqltestutil",
"//lib/pointers",
"//schema",
"@com_github_google_go_cmp//cmp",
"@com_github_inconshreveable_log15//:log15",
"@com_github_json_iterator_go//:go",
"@com_github_stretchr_testify//require",
],
)