Skip to content

Commit

Permalink
cloudtests: testdrive: expose kafka_option (MaterializeInc#22318)
Browse files Browse the repository at this point in the history
  • Loading branch information
nrainer-materialize authored Oct 11, 2023
1 parent 57c6085 commit 67c9614
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions misc/python/materialize/cloudtest/k8s/testdrive.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ def run(
seed: int | None = None,
caller: Traceback | None = None,
default_timeout: str = "300s",
kafka_options: str | None = None,
log_filter: str = "off",
) -> None:
command: list[str] = [
Expand All @@ -66,6 +67,7 @@ def run(
*(["--no-reset"] if no_reset else []),
*([f"--seed={seed}"] if seed else []),
*([f"--source={caller.filename}:{caller.lineno}"] if caller else []),
*([f"--kafka-option={kafka_options}"] if kafka_options else []),
*args,
]

Expand Down

0 comments on commit 67c9614

Please sign in to comment.