Roman Cheplyaka

Results 79 comments of Roman Cheplyaka

This is because some providers catch and ignore the exception. I don't remember which one in particular was the culprit — maybe the old HUnit, maybe quickcheck. So the ideal...

We have https://github.com/feuerbach/tasty/blob/master/core/Test/Tasty/Runners/Utils.hs#L16, could your thing go in that function?

Yes, I think it makes sense.

@noschinl could you remind me on the status of this PR? I vaguely remember that it wasn't ready for some reason — is that right? Has anything changed?

That's so cool! I'll try to take a look this week.

Thanks again for doing this. FYI, I rebased your branch and added some changes at `try-adding-progress-rpt` in this repo, so please use that as a base for any future work....

Yes, this looks legit. Unfortunately, it's not that easy to fix. We need some way to tell `Ap` to force `a`s inside `f a` in a way that works for...

You are right, in that particular case `foldMap` could probably be by `traverse`. The benefit of `Ap` is that it automatically appends the results. In general, Ap is used in...

Because System.Timeout.timeout throws an exception, but will be unable to catch it back. The exception will still abort the computation, but the message will be different.

Yes, HideSuccesses is a global option at the moment. It's possible to make it local, though that'd be a bit involved. Feel free to give it a try, the relevant...