testcontainers-scala icon indicating copy to clipboard operation
testcontainers-scala copied to clipboard

Docker containers for testing in scala

Results 121 testcontainers-scala issues
Sort by recently updated
recently updated
newest added

Adding support for scopes and collections will enable using the latest Scala Couchbase sdk. It may also require supporting Role Based Access Control for Couchbase users. testcontainers-java will likely need...

We are using specs2 for our tests. Is it possible to use this library with it? Do you think we should try to bend the java version of testcontainers to...

When I use this project with servers that need configuration from a started testcontainer, it is a little tricky to setup the starting, configuring, stopping of the container along with...

Using MUnit and `TestContainersForAll`, if a test suite is skipped via filtering by category (https://scalameta.org/munit/docs/filtering.html#group-test-suites-with-categories), the containers start up anyway. It looks like `TestContainersForAll` only checks that the suite has...

Hi, first of all, thank you for your work, I use it extensively :) I wll be glad if you can guide me with this issue! Regards, Pato.

Can I define a DockerComposeContainer from multiple docker-compose files? In general this is possible with docker-compose.

At the moment `KafkaContainer` only allows to specify the Confluent platform version (which under the hood translates into a version of the "confluentinc/cp-kafka" image). In `org.testcontainers.containers.KafkaContainer` the two constructors used...

Minimal test to reproduce the issue: ```scala import com.dimafeng.testcontainers.{ForAllTestContainer, KafkaContainer} import org.scalatest.flatspec.AnyFlatSpec class KafkaExampleTest extends AnyFlatSpec with ForAllTestContainer { override def container: KafkaContainer = KafkaContainer() "Kafka container" should "be started"...

I would like to use this like an SBT plugin, similar to: https://github.com/geekity/sbt-embedded-postgres This would allow for using typesafe-config type of setups and using random local ports/etc as part of...

Hi, I was trying to use localstackV2 container in my tests. Unfortunately during attempt of setup it I'm not able to retrieve lambda mapper port properly. Used dependencies ``` //aws...