Derek Kulinski
Derek Kulinski
So I started migrating to moto, which apparently is broken and currently also need workaround and also doesn't let me test everything. So since either doesn't work correctly I started...
So after more investigation the issue was also introduced by https://github.com/aio-libs/aiobotocore/pull/934 as well. Basically I created a fixture to use Stubber, like this: ```python @pytest_asyncio.fixture() async def fake_ssm(): async with...
I think so. I needed to adapt my code a bit, but looking at the assertion I think I was maybe using it incorrectly and the old version was just...
I don't know internals of botocore, but I got impression that stubber just adds hooks to the client and provides responses set up with `add_response()` whit are just dictionaries. It...
@thehesiod I myself don't use the headers so far, but created PR, is that what were you thinking: https://github.com/aio-libs/aiobotocore/pull/1039
This looks interesting. Any potential drawback of using this?
@nlewo so here's my example: [click here to view] flake.nix ```nix { description = "A very basic flake"; inputs = { nix2container.url = "github:nlewo/nix2container"; nix2container.inputs.nixpkgs.follows = "nixpkgs"; }; outputs =...
@nlewo is there anything I could provide to help identify the problem? Or if I'm using things incorrectly, how the call should be modified to get expected results?
Sorry, but I'm confused I assumed that `buildLayer` would automatically take care of duplicates, perhaps I'm doing them in reverse? How can I correctly do to achieve what I want,...
I tried reverse, i.e.: ```nix layers = [ (n2c.buildLayer { deps = package.propagatedBuildInputs; layers = [ (n2c.buildLayer { deps = [ python ]; }) ]; }) ]; ``` This results...