Skip to content

Commit

Permalink
feat(integration_tests): prevent inane botocore and urllib3 spam
Browse files Browse the repository at this point in the history
  • Loading branch information
a-dubs committed Jan 27, 2025
1 parent 9e06f68 commit ab318ff
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/integration_tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@
log.addHandler(logging.StreamHandler(sys.stdout))
log.setLevel(logging.INFO)

# prevent botocore and urllib3 from spamming logs
logging.getLogger("botocore").setLevel(logging.WARNING)
logging.getLogger("urllib3").setLevel(logging.WARNING)

platforms: Dict[str, Type[IntegrationCloud]] = {
"ec2": Ec2Cloud,
"gce": GceCloud,
Expand Down

0 comments on commit ab318ff

Please sign in to comment.