parent
22b1b17eef
commit
a37417296e
1 changed files with 4 additions and 3 deletions
|
|
@ -10,11 +10,12 @@ filegroup(
|
||||||
)
|
)
|
||||||
|
|
||||||
# Delegation test that verifies second builds properly delegate to existing partitions
|
# Delegation test that verifies second builds properly delegate to existing partitions
|
||||||
|
# Note: This test is designed to be run via the integration test runner (run_e2e_tests.sh)
|
||||||
|
# rather than through bazel test, due to examples being in .bazelignore
|
||||||
sh_test(
|
sh_test(
|
||||||
name = "delegation_test",
|
name = "delegation_test",
|
||||||
srcs = ["delegation_test.sh"],
|
srcs = ["delegation_test.sh"],
|
||||||
data = [
|
data = [
|
||||||
"//examples/basic_graph:basic_graph.build",
|
|
||||||
":test_utils",
|
":test_utils",
|
||||||
],
|
],
|
||||||
size = "medium",
|
size = "medium",
|
||||||
|
|
@ -22,8 +23,8 @@ sh_test(
|
||||||
env = {
|
env = {
|
||||||
"PATH": "/usr/bin:/bin:/usr/local/bin",
|
"PATH": "/usr/bin:/bin:/usr/local/bin",
|
||||||
},
|
},
|
||||||
tags = ["e2e", "delegation"],
|
tags = ["e2e", "delegation", "manual"],
|
||||||
args = ["$(location //examples/basic_graph:basic_graph.build)"],
|
args = ["placeholder"],
|
||||||
)
|
)
|
||||||
|
|
||||||
# Simple shell script test that validates the test runner
|
# Simple shell script test that validates the test runner
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue