mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
327315d5de
Signed-off-by: Daniel Weiße <dw@edgeless.systems>
24 lines
708 B
Python
24 lines
708 B
Python
load("//bazel/go:go_test.bzl", "go_test")
|
|
|
|
go_test(
|
|
name = "test_test",
|
|
srcs = ["mount_integration_test.go"],
|
|
# keep
|
|
tags = ["manual"],
|
|
deps = select({
|
|
"@io_bazel_rules_go//go/platform:android": [
|
|
"//csi/cryptmapper",
|
|
"@com_github_stretchr_testify//assert",
|
|
"@com_github_stretchr_testify//require",
|
|
"@org_uber_go_goleak//:goleak",
|
|
],
|
|
"@io_bazel_rules_go//go/platform:linux": [
|
|
"//csi/cryptmapper",
|
|
"@com_github_stretchr_testify//assert",
|
|
"@com_github_stretchr_testify//require",
|
|
"@org_uber_go_goleak//:goleak",
|
|
],
|
|
"//conditions:default": [],
|
|
}),
|
|
)
|