From 69f2059e5d38bacac4bcda7912cca580ab70914d Mon Sep 17 00:00:00 2001 From: Ayush Ranjan Date: Sat, 11 Jul 2020 08:17:07 -0700 Subject: Runtime test batch executor Earlier we were docker exec-ing each test at a time. However invoking the test framework has a fixed overhead which made it infeasible to make the runtime tests run as presubmits. This change now executes tests in batches of 50 (can be altered). This really speeds up testing process. With this change, the following tests can be run in reasonable times: - Go - Nodejs - Php - Python PiperOrigin-RevId: 320763916 --- test/runtimes/runner/BUILD | 1 + 1 file changed, 1 insertion(+) (limited to 'test/runtimes/runner/BUILD') diff --git a/test/runtimes/runner/BUILD b/test/runtimes/runner/BUILD index 3972244b9..dc0d5d5b4 100644 --- a/test/runtimes/runner/BUILD +++ b/test/runtimes/runner/BUILD @@ -8,6 +8,7 @@ go_binary( srcs = ["main.go"], visibility = ["//test/runtimes:__pkg__"], deps = [ + "//pkg/log", "//pkg/test/dockerutil", "//pkg/test/testutil", ], -- cgit v1.2.3