Dmitry Dygalo

Results 492 comments of Dmitry Dygalo

@chiangbar No, the most recent version does not have it built-in. I was checking the integration, and it is possible to have a much richer report by using their SDK....

In my use case, I needed o follow the json schema reference resolution rules that require normalisation. There is a test suite for this behaviour and right now, only default...

Hi! I like the idea and the proposed solution, however, I don't have the capacity to work on it right now (probably in a few weeks). Additionally, the last part...

Hi! I think it is badly documented, but negative tests are not supported for GraphQL right now

Thanks for pointing out this! Recursion is a bit complicated right now as it is done by inlining the referenced schema up to N times (7 in most cases). I...

hi @ravy Schemathesis indeed [skips](https://github.com/schemathesis/schemathesis/blob/master/src/schemathesis/specs/openapi/examples.py#L247) optional properties to produce minimal valid examples > schemathesis generates `name: ''` which is not valid json type of name is string This is a...

Interesting idea! It also reminds me of pytest's `--setup-only`. I think `st view` would be the right direction, however, the output format requires some more work, especially for large schemas....

Closing it as I feel like it is out of scope for Schemathesis, and there could be other tools that will do this job better.

Hi @MYDIH I'd love to fix it! Can you please provide an example, so I can dig into it and build a failing test case?

Thanks! I can't get it working with boon: ```rust use boon::{Compiler, Schemas}; use serde_json::json; fn main() { let mut schemas = Schemas::new(); let mut compiler = Compiler::new(); let _meta_index =...