Use weak contract id seeding in compatibility tests (#5905)

This should hopefully address the timeouts we have seen occasionally.

changelog_begin
changelog_end
This commit is contained in:
Moritz Kiefer 2020-05-08 11:27:06 +02:00 committed by GitHub
parent d4b705c25e
commit c787f5546d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -225,7 +225,10 @@ def sdk_platform_test(sdk_version, platform_version):
sandbox = "@daml-sdk-{platform_version}//:daml".format(
platform_version = platform_version,
)
sandbox_args = ["sandbox"]
# We need to use weak seeding to avoid our tests timing out
# if the CI machine does not have enough entropy.
sandbox_args = ["sandbox", "--contract-id-seeding=testing-weak"]
# ledger-api-test-tool test-cases
name = "ledger-api-test-tool-{sdk_version}-platform-{platform_version}".format(