Brian Pandola
Brian Pandola
@jbpratt `moto`'s implementation of [`create_stack_instances`](https://github.com/spulec/moto/blob/master/moto/cloudformation/responses.py#L454) doesn't have any support (yet) for the `DeploymentTargets` parameter, so your (mocked) instances never get created. If adding this functionality to `moto` isn't something you...
@jbpratt If you can provide a gist (with assertions) that uses `DeploymentTargets` and succeeds against a real AWS backend, I will add moto support for it. (It isn't completely clear...
Your error log clearly shows that you've installed a very old version of moto (`moto-1.1.13`). Try cleaning your virtual environment, or explicitly setting moto to a higher version in your...
Superseded by #5223
There have been a lot of updates to the codebase since this was opened, including a move from `nosetests` (upon which this new `@skip_in_server_mode` decorator had been based) to `pytest`....
This PR had gotten pretty stale, but replacing the `sleep()` call with `threading.Condition` is the Right Thing to Do here. I brought this up-to-date with the latest on `master`, fixed...
Superseded by #5528
Superseded by the following PRs, which together contain the API endpoints that were to be added: #3524 #4169 #5530
@ipmb Hi there. This had gone a bit stale. I brought in the latest changes from `master` and re-ran CI. The tests are still failing based on some of the...
Maybe I'm not understanding the issue correctly, but here are some thoughts on this: 1. This is only a problem for people using `moto` in server mode, right? I mean,...