Skip to content

Commit df33cfb

Browse files
GrahamCampbellstof
andauthored
Upgrade localstack (#1604)
* Upgrade localstack * Fix the dynamodb integration tests The new localstack version emulates AWS better, returning a consumed capacity only when the request asks for it. * Update the Sts integration test for the new localstack return values * Update the route53 expectation for the listing endpoint In the new localstack version, creating a zone automatically creates the NS and SOA records for that zone, emulating what actually happens on AWS. * Switch to 3.0.0 * Skip bad test for now --------- Co-authored-by: Christophe Coevoet <[email protected]>
1 parent 1831e59 commit df33cfb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ initialize: start-docker
44
start-docker:
55
docker start async_aws_localstack && exit 0 || \
66
docker start async_aws_localstack-sns && exit 0 || \
7-
docker pull localstack/localstack:0.14.2 && \
8-
docker run -d -p 4573:4566 -e SERVICES=sns -v /var/run/docker.sock:/var/run/docker.sock --name async_aws_localstack-sns localstack/localstack:0.14.2 && \
7+
docker pull localstack/localstack:3.0.0 && \
8+
docker run -d -p 4573:4566 -e SERVICES=sns -v /var/run/docker.sock:/var/run/docker.sock --name async_aws_localstack-sns localstack/localstack:3.0.0 && \
99
docker run --rm --link async_aws_localstack-sns:localstack martin/wait -c localstack:4566
1010

1111
test: initialize

0 commit comments

Comments
 (0)