summaryrefslogtreecommitdiffhomepage
path: root/benchmarks/defs.bzl
blob: 56d28223e306c8d52ba40389bbaf2612f9703e16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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),
]