Bazel: Set slow tests to size="large"

We are seeing timeouts on the CI:

//gerrit-acceptance-tests/src/test/java/com/google/gerrit/acceptance/rest/change:rest_change_submit
//TIMEOUT in 305.1s

Increase the time allowed to run the tests to 900 seconds.

Change-Id: Ifa5e67439ab996df50cd498972d936813a6a2c01
This commit is contained in:
David Ostrovsky
2016-11-09 21:08:44 +01:00
parent ae0c067545
commit 535986ccf2
2 changed files with 2 additions and 2 deletions

View File

@@ -20,7 +20,7 @@ def acceptance_tests(
'acceptance',
'slow',
],
size = "medium",
size = "large",
jvm_flags = vm_args,
**kwargs
)

View File

@@ -35,7 +35,7 @@ junit_tests(
name = 'elasticsearch_tests',
tags = ['elastic', 'flaky'],
srcs = glob(['src/test/java/**/*.java']),
size = "medium",
size = "large",
deps = [
':elasticsearch',
'//gerrit-extension-api:api',