Alexandre de Champeaux
Alexandre de Champeaux
Thanks for the great library! Just ran into an issue with instance checks on typing.py aliases. ```py def test_isinstance_proxy(): p = wrapt.ObjectProxy({1: 2}) assert isinstance(p, dict) # Passes just fine...
Jupyter released 6.21.0 on the 31st of Jan. It includes https://github.com/ipython/ipykernel/pull/1078 which adds a __file__ variable. Sadly, that file doesn't actually exist.... Reproduce in a notebook with ```py pip install...
I'm trying to bind udp ports: ```py def telegraf(network: Network): ctr = DockerContainer(image="telegraf:1.31.1") ctr.with_volume_mapping(f"{CURRENT_DIR}/telegraf_test.conf", "/etc/telegraf/telegraf.d/telegraf_test.conf") ctr.with_exposed_ports("8094/tcp") # Telegraf ports ctr.with_bind_ports("8125/udp", "8125/udp") ctr.with_bind_ports("8092/udp", "8092/udp") _connect_to_network(ctr, network, "telegraf") return ctr ``` It...
If fails to start, since `tc_start` assumes that the container is using host networking ```py from docker.types import EndpointConfig from testcontainers.core.container import DockerContainer from testcontainers.core.network import Network from testcontainers.kafka import...