gerrit/gerrit-acceptance-tests/tests.bzl
Han-Wen Nienhuys b6a4048986 Apply buildifier to .bzl files.
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
2018-07-10 20:38:52 +09:00

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
)