Dmitry Dygalo

Results 492 comments of Dmitry Dygalo

Hi @woodruffw I've adjusted the `enum` output as per your suggestion + `anyOf` & `oneOf` have additional context that can be helpful to make a more useful error message. I...

@lobkovilya FYI, in CLI you could set `mesh=default` with `--set-path 'mesh=default'`

I think it would be better to use `--casette-path=vcr.yaml` which will store network requests in a VCR-compatible format and inspect it there. Schemathesis v4 removes `--hypothesis-verbosity` as it exposes quite...

Nice! I think this one should be relatively easy to implement - I need to check the spec first :) I don't have a timeline for it though

What command did you use, and does this value appear consistently among different runs? My current assumption is that it comes from the constants collected by Hypothesis from the source...

A bit of investigation. To generate UUIDs, Hypothesis generates `random.Random` instances, and the first seed is always 0. With this seed, `random.Random` always generates 302934307671667531413257853548643485645 as the first value, which...

@hdr1210 Understood! In any event, I'll dig into this issue again next weekend - maybe I am missing something.

Can't reproduce it locally :( Would it be possible to share the full schema and CLI command you've used for it? If not, then a VCR cassette would help me...

@pregress Thanks! It is super weird that this schema leads to 4 characters in that field. With `maxLength: 3` + `nullable: true`, it effectively boils down to `st.text(max_length=3) | st.none()`...

Thank you for sharing! I've tried a couple of ideas, but I'm not having any success with the investigation right now. One of the thoughts I had is that it...