ledger-api-test-tool-on-canton: Disable tests unless run explicitly. (#3492)

This commit is contained in:
Samir Talwar 2019-11-15 17:29:12 +01:00 committed by mergify[bot]
parent 8a024c549f
commit c89d1b654e
2 changed files with 10 additions and 2 deletions

View File

@ -64,4 +64,5 @@ conformance_test(
5021,
],
server = ":canton-test-runner-with-dependencies",
tags = ["manual"],
) if not is_windows else None

View File

@ -7,7 +7,14 @@ load(
)
load("@os_info//:os_info.bzl", "is_windows")
def conformance_test(name, server, server_args = [], extra_data = [], ports = [6865], test_tool_args = []):
def conformance_test(
name,
server,
server_args = [],
extra_data = [],
ports = [6865],
test_tool_args = [],
tags = []):
client_server_test(
name = name,
timeout = "long",
@ -24,7 +31,7 @@ def conformance_test(name, server, server_args = [], extra_data = [], ports = [6
tags = [
"dont-run-on-darwin",
"exclusive",
],
] + tags,
) if not is_windows else None
def server_conformance_test(name, servers, server_args = [], test_tool_args = []):