testcontainers-python facilitates the use of Docker containers for functional and integration testing. The collection of packages currently supports the following features.
.. toctree:: core/README modules/arangodb/README modules/azurite/README modules/clickhouse/README modules/elasticsearch/README modules/google/README modules/kafka/README modules/keycloak/README modules/localstack/README modules/minio/README modules/mongodb/README modules/mssql/README modules/mysql/README modules/neo4j/README modules/nginx/README modules/opensearch/README modules/oracle/README modules/postgres/README modules/rabbitmq/README modules/redis/README modules/selenium/README modules/k3s/README
>>> from testcontainers.postgres import PostgresContainer
>>> import sqlalchemy
>>> with PostgresContainer("postgres:9.5") as postgres:
... engine = sqlalchemy.create_engine(postgres.get_connection_url())
... with engine.begin() as connection:
... result = connection.execute(sqlalchemy.text("select version()"))
... version, = result.fetchone()
>>> version
'PostgreSQL 9.5...'
The snippet above will spin up a postgres database in a container. The get_connection_url()
convenience method returns a sqlalchemy
compatible url we use to connect to the database and retrieve the database version.
The suite of testcontainers packages is available on PyPI,
and individual packages can be installed using pip
.
Version 4.0.0 onwards we do not support the testcontainers-* packages as it is unsutainable to maintain ownership.
Instead packages can be installed by specifying extras, e.g., pip install testcontainers[postgres]
.
When trying to launch a testcontainer from within a Docker container, e.g., in continuous integration testing, two things have to be provided:
- The container has to provide a docker client installation. Either use an image that has docker pre-installed (e.g. the official docker images) or install the client from within the Dockerfile specification.
- The container has to have access to the docker daemon which can be achieved by mounting /var/run/docker.sock or setting the DOCKER_HOST environment variable as part of your docker run command.
We recommend you use a virtual environment for development (python>=3.7
is required). After setting up your virtual environment, you can install all dependencies and test the installation by running the following snippet.
poetry install --all-extras
make <your-module>/tests
Testcontainers is a collection of implicit namespace packages to decouple the development of different extensions, e.g., testcontainers-mysql
and testcontainers-postgres
for MySQL and PostgreSQL database containers, respectively. The folder structure is as follows.
modules
# One folder per feature.
[feature name]
# Folder without __init__.py for implicit namespace packages.
testcontainers
# Implementation as namespace package with __init__.py.
[feature name]
__init__.py
# Other files for this
...
# Tests for the feature.
tests
test_[some_aspect_for_the_feature].py
...
# README for this feature.
README.rst
# Setup script for this feature.
setup.py
You want to contribute a new feature or container? Great! You can do that in six steps as outlined here <https://github.com/testcontainers/testcontainers-python/blob/main/.github/PULL_REQUEST_TEMPLATE/new_container.md>__.