pytest-localstack icon indicating copy to clipboard operation
pytest-localstack copied to clipboard

Make localstack image name configurable

Open ps-jay opened this issue 6 years ago • 0 comments

This allows folks to substitute their own localstack image, or point to a local cache of Docker images - such as an Artifactory proxy/cache.

The concrete use-case for me, is the Artifactory proxy/cache:

e.g.

localstack = pytest_localstack.patch_fixture(
    services=["sts"],
    scope='module',
    autouse=True,
    region_name='ap-southeast-2',
    localstack_image='artifactory.example.org:6555/localstack/localstack',
)

ps-jay avatar Nov 25 '19 01:11 ps-jay