Set server_tests size to large for CI

//gerrit-server:server_tests takes on average 2' on a local
multi-cpu machine. On the CI, during peak usage, it may exceed the limit
of 5' (300 sec) for defining a failed test suite on Bazel.

As a matter of fact, this suite is stable on Buck but mostly
failing for Bazel.

Raise the limit to large to make it more stable on Bazel
builds on the CI.

Change-Id: I20a02d4750d929bbe4e40bbf7a46356051cd4c58
This commit is contained in:
Luca Milanesio 2017-01-01 22:42:05 +00:00
parent 34d36d0038
commit 08223f8bb6

View File

@ -208,7 +208,7 @@ junit_tests(
junit_tests(
name = "server_tests",
size = "medium",
size = "large",
srcs = glob(
["src/test/java/**/*.java"],
exclude = TESTUTIL + PROLOG_TESTS + PROLOG_TEST_CASE + QUERY_TESTS,