Skip to content

buckification #918

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 31, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ hydra-core
ipython
kfp==1.8.22
mlflow-skinny
moto==4.2.14
moto~=5.0.8
pyre-extensions
pyre-check
pytest
Expand Down
8 changes: 2 additions & 6 deletions scripts/component_integration_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,13 +174,9 @@ def _mock_aws_batch() -> None:
ensure_network()
os.environ.setdefault("MOTO_DOCKER_NETWORK_NAME", NETWORK)

from moto import mock_batch, mock_ec2, mock_ecs, mock_iam, mock_logs
from moto import mock_aws

mock_batch().__enter__()
mock_iam().__enter__()
mock_ec2().__enter__()
mock_ecs().__enter__()
mock_logs().__enter__()
mock_aws().__enter__()

import boto3.session

Expand Down
Loading