We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16fade9 commit 23bb75dCopy full SHA for 23bb75d
1 file changed
e2etests/cvd/cvd_create_tests/BUILD.bazel
@@ -16,15 +16,32 @@ load("@rules_go//go:def.bzl", "go_test")
16
17
go_test(
18
name = "cvd_create_tests",
19
+ size = "large",
20
srcs = ["main_test.go"],
21
+ tags = [
22
+ "exclusive",
23
+ "external",
24
+ "no-sandbox",
25
+ "supports-graceful-termination",
26
+ ],
27
deps = [
- "//cvd/common:common",
28
+ "//cvd/common",
29
],
30
+)
31
+
32
+go_test(
33
+ name = "cvd_create_tests_additional_substitution",
34
size = "large",
35
+ srcs = ["main_test.go"],
36
+ data = ["//:debian_substitution_marker"],
37
+ env = {"LOCAL_DEBIAN_SUBSTITUTION_MARKER_FILE": "$(rlocationpath //:debian_substitution_marker)"},
38
tags = [
39
"exclusive",
40
"external",
41
"no-sandbox",
42
"supports-graceful-termination",
43
44
+ deps = [
45
46
47
)
0 commit comments