Diego Argueta

Results 46 comments of Diego Argueta

Duplicate of #427? Looks like this has been asked about several times over the span of years.

Oh, I misunderstood. Ignore me! 😅

An important thing to note here: Technically, `does_not_retry` is a function that *returns* a generator, as you can see here: ``` >>> def foo(): ... for i in range(2): ......

Not a duplicate so much as a use case for #64.

I definitely second this!

So I get the S3 empty object thing but I've been doing some thinking and I think, with some finagling, it may be possible to simulate nonexistent directories by using...

Confirmed on 0.10.2 for the following character codes: 7F-A0, AD: ``` >>> failed = [] >>> for code in range(32, 0x1ffff): ... try: ... toml.dumps({"text":chr(code)}) ... except IndexError: ... failed.append(code)...

Might be helpful? https://help.github.com/en/articles/displaying-a-sponsor-button-in-your-repository

This looks like a different error. Your crash is in `responses`. If you add something like `responses.add_passthru('https://(BUCKET NAME).s3.ei-west-1.amazonaws.com/')` during your test setup I think that'll fix your bug.

Sorry for the delay. I just tried it again and it's still failing, albeit much less frequently. Installation's changed a bit: ``` boto==2.48.0 boto3==1.7.4 botocore==1.10.4 moto==1.3.3 pytest==3.5.1 pytest-mock==1.10.0 pytest-randomly==1.2.3 s3fs==0.1.5...