summaryrefslogtreecommitdiffstats
path: root/gerrit-acceptance-tests/src/test/java/com/google/gerrit/acceptance/ssh/BUILD
blob: c6d2299e74b2f18f93b8e51d5bf29e8a9c9505ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
load("//gerrit-acceptance-tests:tests.bzl", "acceptance_tests")

java_library(
    name = "util",
    testonly = 1,
    srcs = ["AbstractIndexTests.java"],
    deps = ["//gerrit-acceptance-tests:lib"],
)

acceptance_tests(
    srcs = glob(
        ["*IT.java"],
        exclude = ["ElasticIndexIT.java"],
    ),
    group = "ssh",
    labels = ["ssh"],
    deps = [
        ":util",
        "//lib/commons:compress",
    ],
)

acceptance_tests(
    srcs = ["ElasticIndexIT.java"],
    group = "elastic",
    labels = [
        "docker",
        "elastic",
        "exclusive",
        "ssh",
    ],
    deps = [
        ":util",
        "//lib/commons:compress",
    ],
)