testcontainers-python
testcontainers-python copied to clipboard
Testcontainers is a Python library that providing a friendly API to run Docker container. It is designed to create runtime environment to use during your automatic tests.
it has been some time. the urllib3/docker-py incompatibilities are fixed. the time of using named pipes on windows is here. the question is how to deal with them in this...
The `testcontainers-*` packages, e.g.: * https://pypi.org/project/testcontainers-arangodb/ * https://pypi.org/project/testcontainers-postgres/ were added as part of the last release, but it introduces a lot of complexity, for what could be just a lot...
Currently we are using tmpfs mounts with testcontainers-go to speed up bootstraping databases during CI. The data folder of the database gets mounted into a tmpfs mount which speeds up...
Hi, I took the liberty to improve the Oracle DB module for Testcontainers Python. The PR has several enhancements: * Leveraging `oracledb` thin Python driver * This makes Oracle DB...
Resolves #383 This PR aims to unify the configuration for the Testcontainer Hostvariable as it is in [Java](https://java.testcontainers.org/features/configuration/#customizing-docker-host-detection) and [Dotnet](https://dotnet.testcontainers.org/custom_configuration/) (and potentially others).
Back in May 2022, Oracle superseded [cx-Oracle](https://pypi.org/project/cx-Oracle/) with [python-oracledb](https://pypi.org/project/oracledb/), see the [release notes](https://python-oracledb.readthedocs.io/en/latest/release_notes.html). The really nice thing about that is that python-oracledb is not only the successor of cx-Oracle with...
**Describe the bug** We use confluent_kafka in the project and it's strange that we need another kafka sdk (kafka-python) just to check that the container is running. **To Reproduce** Install...
**Describe the bug** In [Java](https://java.testcontainers.org/features/configuration/#customizing-docker-host-detection) and [Dotnet](https://dotnet.testcontainers.org/custom_configuration/), the variable "TESTCONTAINERS_HOST_OVERRIDE" exists to manually specify the testcontainer host IP. This is required for rootless docker in docker. **Runtime environment** RHEL8 with...
**Describe the bug** I copied this code from the python-kafka tests in this repo. I am able to run it successfully as a script. However, when I run in pytest,...
**Describe the bug** Mypy is failing because the packages aren't marked as typed (missing `py.typed` file), but it seems that most of the packages have the type definitions. Could the...