Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 726 Bytes

CONTRIBUTING.md

File metadata and controls

34 lines (24 loc) · 726 Bytes

go-aws-sdk-middlewares

Momento Middlewares for the Golang AWS SDK

Prerequisites

Testing

To run the integration tests, you will need to have DynamoDB Local running. You can download a Docker container as follows:

docker pull amazon/dynamodb-local

To start the container:

docker run -p 8000:8000 amazon/dynamodb-local

If this is your first time running the tests, you will to install some development tools:

make install-devtools

Then, you can run the tests with:

export MOMENTO_API_KEY=<YOUR_API_KEY>
make test