diff --git a/test/conformance/BUILD b/test/conformance/BUILD index 7c11b84663c..828fb29402b 100644 --- a/test/conformance/BUILD +++ b/test/conformance/BUILD @@ -30,9 +30,12 @@ filegroup( genrule( name = "list_conformance_tests", - srcs = ["//test/e2e:all-srcs"], + srcs = [ + "//test/e2e:all-srcs", + "//test/e2e_node:all-srcs", + ], outs = ["conformance.txt"], - cmd = "./$(location :conformance) $(locations //test/e2e:all-srcs) > $@", + cmd = "./$(location :conformance) $(locations //test/e2e:all-srcs) $(locations //test/e2e_node:all-srcs) > $@", message = "Listing all conformance tests.", tools = [":conformance"], )