{"library":"pytest-docker","install":[{"cmd":"pip install pytest-docker","imports":["def test_something(docker_compose):\n    # Access services via docker_compose fixture\n    ...","def test_something(docker_client):\n    # Access Docker client via docker_client fixture\n    ...","import pytest\nfrom pathlib import Path\n\n@pytest.fixture(scope=\"session\")\ndef docker_compose_file():\n    return str(Path(__file__).parent / \"docker-compose.yml\")","from pytest_docker.plugin import Services\n\ndef my_test_function(docker_compose: Services):\n    # Use for type hinting the docker_compose fixture\n    ..."]},{"cmd":"pip install pytest-docker 'docker-compose>=2.0.0; python_version >= \"3.10\"' 'docker-compose<2.0; python_version < \"3.10\"'","imports":[]}]}