moto
moto copied to clipboard
A library that allows you to easily mock out tests based on AWS infrastructure.
TODO: - [x] Documentation: https://moto--5192.org.readthedocs.build/en/5192/docs/multi_account.html - [x] Determine account ID based on provided aws_access_key - [x] Use account ID to select the correct backend - [x] Use account ID everywhere,...
`rds.describe_db_clusters` is not returning the property `earliestRestorableTime` when the cluster has a snapshot
Hello! Found a security issue in your package in pypi: https://pypi.org/project/moto/ Affected versions of moto: 0.0.10 (released Mar 18, 2013) There's an unmet dependency on module "spulec-httpretty" if you will...
# Versions `moto`: 3.1.16 `boto3`: 1.21.46 # Code ``` response = boto3.client('sqs').send_message_batch( QueueUrl='the-queue-url, Entries=[ { 'Id': '1' 'MessageBody': 'foo', 'DelaySeconds': 180 }, { 'Id': '2' 'MessageBody': 'foo', 'DelaySeconds': 1800 }...
Currently the development installation guide only explains about setting moto up in a virtual environment, not with Docker. There is already a dockerfile but with the current dockerfile, it requires...
Currently, [AMP](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/amp.html) is [not covered by Moto](https://github.com/spulec/moto/blob/master/IMPLEMENTATION_COVERAGE.md#unimplemented). For mock unit testing of boto-managed units/specs, as an automation engineer, I want to be able to unit test Amazon Managed Prometheus (AMP)...
The release of Moto 4.x is due soon, and will contain the following changes: Multi-Account support ([see the WIP documentation](https://moto--5192.org.readthedocs.build/en/5192/docs/multi_account.html)) Removal of the `mock_dynamodb2` and `mock_rds2` decorators The ThreadedMotoServer will...
The moto test cases are failed due to > from cryptography import x509 E ModuleNotFoundError: No module named 'cryptography' I changed the **requirements.txt** file to install moto[all] as per suggestions...
Here is what I do: ```bash mamba env create -n test-moto # this creates a clean environment. conda activate test-moto pip install moto # OR mamba install moto -c conda-forge...
remove_flow_output argument OutputArn expects an output name but should expect an output ARN.