Hello! Thank you for this framework
I have maybe a silly question. When running integration tests that don’t use pubsub, the docker containers are started and everything works.
However, when running an integration test that uses pubsub, the docker containers are started and tests fail. The reason is because the integration tests don’t start a pubsub service too.
services:
kalix-proxy:
...
gcloud-pubsub-emulator:
...
My solution is to run docker compose up --detach
and get the pubsub container running. Then the integration tests are passing.
Would it be possible to start the pubsub service too when starting the docker containers for integration tests automatically? Or am I doing something wrong?