Skip to content
This repository was archived by the owner on Mar 23, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,6 @@ def pytest_runtestloop(session: Session):
return
LOG.info("TEST_FORCE_LOCALSTACK_START is set, a Localstack instance will be created.")

from localstack.utils.common import safe_requests

if is_aws_cloud():
localstack_config.DEFAULT_DELAY = 5
localstack_config.DEFAULT_MAX_ATTEMPTS = 60
Expand All @@ -73,8 +71,6 @@ def pytest_runtestloop(session: Session):
os.environ[ENV_INTERNAL_TEST_RUN] = "1"
localstack_config.INCLUDE_STACK_TRACES_IN_HTTP_RESPONSE = True

safe_requests.verify_ssl = False

from localstack.runtime import current

_started.set()
Expand Down
Loading