def test_sibling_specs(self):
Test that sibling Addresses are parsed in the 3rdparty/jvm directory.
spec = self.spec_parser.parse_spec("3rdparty/jvm:")
selector = Select(BuildFileAddresses)
build_request = self.scheduler.selection_request([(selector,spec)])
((subject, _), root), = self.build(build_request)
// Validate the root.
After Change
def test_sibling_specs(self):
Test that sibling Addresses are parsed in the 3rdparty/jvm directory.
spec = self.spec_parser.parse_spec("3rdparty/jvm:")
build_request = self.scheduler.execution_request([BuildFileAddresses], [spec])
((subject, _), root), = self.build(build_request)
// Validate the root.