b6a4048986
Buildifier is now also used for formatting .bzl files. This change was created by running buildifier 0.12 over our source tree. Change-Id: I9f15112d4fe23e5cec0700cfe47f1ca649f61d2a
22 lines
452 B
Python
22 lines
452 B
Python
load("//tools/bzl:junit.bzl", "junit_tests")
|
|
|
|
def acceptance_tests(
|
|
group,
|
|
deps = [],
|
|
labels = [],
|
|
vm_args = ["-Xmx256m"],
|
|
**kwargs):
|
|
junit_tests(
|
|
name = group,
|
|
deps = deps + [
|
|
"//gerrit-acceptance-tests:lib",
|
|
],
|
|
tags = labels + [
|
|
"acceptance",
|
|
"slow",
|
|
],
|
|
size = "large",
|
|
jvm_flags = vm_args,
|
|
**kwargs
|
|
)
|