Skip to content

Commit

Permalink
test/redpanda: enable protobuf schema tests
Browse files Browse the repository at this point in the history
  • Loading branch information
BenPope authored and benesch committed Dec 6, 2021
1 parent 58be6ce commit 0f130d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion misc/python/materialize/mzcompose.py
Original file line number Diff line number Diff line change
Expand Up @@ -897,7 +897,7 @@ class Redpanda(PythonService):
def __init__(
self,
name: str = "redpanda",
version: str = "v21.10.2",
version: str = "v21.11.1-beta1",
image: Optional[str] = None,
aliases: Optional[List[str]] = None,
ports: Optional[List[int]] = None,
Expand Down
3 changes: 1 addition & 2 deletions test/redpanda/mzworkflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ def workflow_redpanda_testdrive(w: Workflow):

# Features currently not supported by Redpanda:
# - `kafka-time-offset.td` (https://github.com/vectorizedio/redpanda/issues/2397)
# - `schema-registry-publish` with `format=protobuf` (Redpanda does not support schema publication for protobuf/json)

# Due to interactions between docker-compose, entrypoint, command, and bash, it is not possible to have
# a more complex filtering expression in 'command' . So we basically run the entire testdrive suite here
Expand All @@ -32,5 +31,5 @@ def workflow_redpanda_testdrive(w: Workflow):

w.run_service(
service="testdrive-svc",
command="grep -L -E 'kafka_time_offset|schema-type=protobuf' testdrive/*.td",
command="grep -L -E 'kafka_time_offset' testdrive/*.td",
)

0 comments on commit 0f130d0

Please sign in to comment.