Tom Sydney Kerckhove
Tom Sydney Kerckhove
@Enivex I guess then the only thing to do here is to document that typst cannot roundtrip arbitrary json. I think it's fine for this to be "broken as intended"...
cc @tchoutri
It looks like we found something related here: https://github.com/nix-community/poetry2nix/issues/1029 I honestly am not really sure what I'm looking at. (I don't really write python most of the time, I'm just...
@da-woods That did it! I misunderstood the relationship between python and cython. Thank you so much for the pointer.
I guess the passwords should be passed in as `Text` and encoded as `UTF8` or so.
@phadej `ioProperty` turns shrinking off: https://github.com/nick8325/quickcheck/blob/2dcfbf6170d58f993a53159c24e2549744c9cf2a/src/Test/QuickCheck/Property.hs#L164 That's not a solution but at least it's not bugged. This is what hspec does: https://github.com/hspec/hspec/blob/e990053f35e1c9f2b0b6dfc13475f657d2eef120/hspec-core/src/Test/Hspec/Core/Example.hs#L178 https://github.com/hspec/hspec/blob/e990053f35e1c9f2b0b6dfc13475f657d2eef120/hspec-core/src/Test/Hspec/Core/QuickCheckUtil.hs#L24-L34
For the record: I just spent a few minutes trying to "just" get rid of that `reduceRose` but it turned out to be significantly difficult.
> I'm not sure what you mean by "properties don't use any resources while they are being tested", but at least I can try to describe the situation. Thank you...
For the record, I tried rewriting my `aroundProperty` using `idempotentIOProperty` but I think then I run into the situation where the IO is not rerun during shrinking: ``` aroundProperty ::...
@nick8325 I have just spent the last few hours completely nerd-sniped trying to convince myself that what I was trying was at all possible. Here is what I've done. It...