Dmitry Dygalo

Results 492 comments of Dmitry Dygalo

> Ага, было бы удобно, если их, к примеру, упрятать под капот schema, чтобы в тестовой функции можно было обращаться через Если так сделать, то это будет значить что в...

Hi @Zac-HD ! Thank you for creating an issue about this! :) I am inclined to think that having access to the underlying exception would be the best way to...

These stats are definitely nice to see, but I don't have a complete vision of what the end result might look like. It is somehow incompatible with the current CLI...

The error in the output states: ``` jsonschema.exceptions.RefResolutionError: Unresolvable JSON pointer: 'keyCertificatePEMContents' ``` But, your example doesn't correspond to the output as it has no such a pointer at all....

There is a similar canonicalisation issue with `not` involved: ```python >>> schema = {"type": "integer", "not": {"required": ["foo"]}} >>> canonicalish(schema) {'type': 'integer', 'not': {'type': 'integer'}} >>> canonicalish(canonicalish(schema)) {'not': {}} ```...

As an additional idea for testing `curlify` itself: - generate requests with hypothesis strategy - make requests to httpbin (e.g. via `pytest-httpbin` to avoid external network) - Convert request to...

Hi! First of all, sorry for not answering your email about references support :( It was quite a long time ago - there were some incompatibilities when I tried it...

@Zac-HD I think it is a viable option, indeed! I will check if it will work and post an update here. At first glance, it should be ok but should...

Thanks for reporting @Bidaya0 ! I'll take a look today :) It is likely a bug in our data generation logic

The problem is that the `ProfileBatchPostArgsSer` schema allows object with more than two fields and Schemathesis do not reject such generated samples for the `application/x-www-form-urlencoded` media type. As an immediate...