Skip to content

Commit

Permalink
trying with docker -v mount
Browse files Browse the repository at this point in the history
  • Loading branch information
DinisCruz committed Oct 14, 2024
1 parent d9156e3 commit 1aa2dea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/actions/docker__local-stack/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ runs:
-e SERVICES="${{ inputs.LOCAL_STACK_SERVICES }}" \
-e AWS_ACCESS_KEY_ID="${{ inputs.AWS_ACCESS_KEY_ID }}" \
-e AWS_SECRET_ACCESS_KEY="${{ inputs.AWS_SECRET_ACCESS_KEY }}" \
-v "/run/docker/docker.sock:/var/run/docker.sock" \
--name localstack-server \
localstack/localstack:latest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ def test_create__temp_lambda(self):
_.add_function_source_code()
update_result = _.package.update()
pprint(update_result)
update_status = _.lambda_function().wait_for_function_update_to_complete()
update_status = _.lambda_function().wait_for_function_update_to_complete(wait_time=0.5)
print("------------- CONFIGURATION (after update_status)")
pprint(_.lambda_function().configuration())
print("-------------")
print("UPDATE STATUS: ", update_status)

Expand Down

0 comments on commit 1aa2dea

Please sign in to comment.