summaryrefslogtreecommitdiffhomepage
path: root/benchmarks/defs.bzl
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2020-02-13 09:20:30 -0800
committergVisor bot <gvisor-bot@google.com>2020-02-13 09:21:39 -0800
commit3ad6d3056371b031fb0c16c4e365d5c7e60bdaf0 (patch)
tree6e1fa4fd140ff69b02dbc310f5e77a3cc50ae7bc /benchmarks/defs.bzl
parentcf1e50a80976fae95eef4ab05d961200b04e2346 (diff)
Call py_requirement with named argument for optional kwarg.
PiperOrigin-RevId: 294930818
Diffstat (limited to 'benchmarks/defs.bzl')
-rw-r--r--benchmarks/defs.bzl14
1 files changed, 14 insertions, 0 deletions
diff --git a/benchmarks/defs.bzl b/benchmarks/defs.bzl
new file mode 100644
index 000000000..56d28223e
--- /dev/null
+++ b/benchmarks/defs.bzl
@@ -0,0 +1,14 @@
+"""Provides attributes common to many workload tests."""
+
+load("//tools:defs.bzl", "py_requirement")
+
+test_deps = [
+ py_requirement("attrs", direct = False),
+ py_requirement("atomicwrites", direct = False),
+ py_requirement("more-itertools", direct = False),
+ py_requirement("pathlib2", direct = False),
+ py_requirement("pluggy", direct = False),
+ py_requirement("py", direct = False),
+ py_requirement("pytest"),
+ py_requirement("six", direct = False),
+]