Dmitry Dygalo

Results 492 comments of Dmitry Dygalo

FWIW, I updated the error text, so it clearly communicates the current state of things. Network requests are not supported on WASM now (though they work in the new, not...

Cool, I’ll try to find some time to review it :) re: betamax- at some point it will be nice to move to pytest-recording :)

Hi! Sure! I'd be happy to review your PR! :) Could you, briefly describe what kind of problems these parsers solve?

I also noted that it only affects Linux in Schemathesis's test suite

Hi! Can you, please, share how such headers are represented in more detail? Are they represented in the schema? Generally, headers can be overridden via CLI by the `-H` option...

@hoog1511 Please, let me know if my comment above is sufficient. If not, I'd be happy to elaborate

Hi! Could you, please, try running the state machine above with the following settings: ```python from hypothesis import settings, Verbosity, Phase settings( max_examples=1, stateful_step_count=5, verbosity=Verbosity.verbose, phases=[Phase.generate] ) ``` also, have...

The response content type is expected to be JSON, not “text/plain; charset=utf-8”, otherwise it is not clear how to extract a field from text, even though it declares a schema

To conclude, the `max_examples` setting controls the number of sequences executed during the `generate` phase. Usually shrinking works slow with stateful tests and tends to run a lot of sequences,...

I see it this way. First, it should be added to `hypothesis-graphql`, ie. some argument to the [strategy factories](https://github.com/Stranger6667/hypothesis-graphql/blob/master/src/hypothesis_graphql/_strategies/strategy.py#L471) like `allow_null: bool = True`, then store it on the `GraphQLStrategy`...