From 8015f60708109797c450b47d404bc18bf7daa7fe Mon Sep 17 00:00:00 2001 From: Stefano Baghino <43749967+stefanobaghino-da@users.noreply.github.com> Date: Mon, 15 Nov 2021 12:39:05 +0100 Subject: [PATCH] Add `cpu:2` tag to extractor tests (#11697) This will limit the parallelism of extractor integration tests. Each test runs now a bit faster although overall all tests seem to run a bit slower. This seems a good compromise as it should limit the contention over system resources between various integration tests, each running a PostgreSQL instance and sharing various system resources.\ changelog_begin changelog_end --- extractor/extractor.bzl | 1 + 1 file changed, 1 insertion(+) diff --git a/extractor/extractor.bzl b/extractor/extractor.bzl index 566a17d471..a806f3d58a 100644 --- a/extractor/extractor.bzl +++ b/extractor/extractor.bzl @@ -12,6 +12,7 @@ def extractor_test(name, srcs, flaky): name = name, flaky = flaky, size = "medium", + tags = ["cpu:2"], srcs = srcs, data = [ "//daml-lf/encoder:testing-dar-latest",