blob: ef44b46e36b3aac3ca7715a2a5b3e1dcc6f74058 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
"""Defines a rule for benchmark test targets."""
load("//tools:defs.bzl", "go_test")
def benchmark_test(name, tags = [], **kwargs):
go_test(
name,
tags = [
# Requires docker and runsc to be configured before the test runs.
"local",
"manual",
],
**kwargs
)
|