diff options
author | Ayush Ranjan <ayushranjan@google.com> | 2020-08-06 11:03:29 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-08-06 11:08:50 -0700 |
commit | 72b528c840342111c6e9dd5b13cc5c893707dad6 (patch) | |
tree | 2f88a8be10b558aa51721843f633d04270545f80 /test/runtimes/BUILD | |
parent | 63447e5afae62dab64940054372166dab45a057c (diff) |
[runtime tests] Exclude failing python and java tests
test_httplib was un-excluded in cl/325137657. Exclude it again.
test_httplib fails consistently when running in a kokoro job. Could not repro
with Docker.
There are some java tests that pass locally on Docker but fail when running
within a kokoro job.
Also make shard count a multiple of 8 to minimize idle cores and minimize test
time.
PiperOrigin-RevId: 325267071
Diffstat (limited to 'test/runtimes/BUILD')
-rw-r--r-- | test/runtimes/BUILD | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/runtimes/BUILD b/test/runtimes/BUILD index 3be123d94..3d0f10855 100644 --- a/test/runtimes/BUILD +++ b/test/runtimes/BUILD @@ -6,7 +6,7 @@ runtime_test( name = "go1.12", exclude_file = "exclude_go1.12.csv", lang = "go", - shard_count = 5, + shard_count = 8, ) runtime_test( @@ -14,26 +14,26 @@ runtime_test( batch = 100, exclude_file = "exclude_java11.csv", lang = "java", - shard_count = 20, + shard_count = 16, ) runtime_test( name = "nodejs12.4.0", exclude_file = "exclude_nodejs12.4.0.csv", lang = "nodejs", - shard_count = 10, + shard_count = 8, ) runtime_test( name = "php7.3.6", exclude_file = "exclude_php7.3.6.csv", lang = "php", - shard_count = 5, + shard_count = 8, ) runtime_test( name = "python3.7.3", exclude_file = "exclude_python3.7.3.csv", lang = "python", - shard_count = 5, + shard_count = 8, ) |