Roman Cheplyaka

Results 79 comments of Roman Cheplyaka

It is a real issue, but one that's not specific to tasty. There's no way (that I'm aware of) to query the terminal color scheme, so if you use any...

Actually, there is a way to query for background: https://stackoverflow.com/a/7767891/110081. But it's not supported by ansi-terminal yet. So what would be needed is: * add this query to ansi-terminal *...

Fair enough; I'd accept a PR that enumerates the re-exports explicitly.

I probably won't have time to work on this, but pull requests are welcome.

Hi Agustín, This sounds like a cool idea. However, I don't see why it needs to be in tasty-core. Try implementing it at as a standalone TestManager, using the API...

There are some trivial ones, like listingTests and includingOptions, that don't actually run the tests. Yours is the first case that I can recall where you actually want to run...

My main concern would be mainly introducing ambiguous types, esp. if it breaks existing code. It should be fine with the "standard" usage of `testCase "name" $ 2 @?= 2`...

Changing the existing module is indeed not an option. However, I am all for a redesign (under a new name — say, Test.Tasty.HUnit2) with better names etc. There are also...

Yes, I think we've been stuck with the original HUnit design for too long, so a well designed replacement would be welcome.

I'm somewhat hesitant to have two different timeout mechanisms. Do you see a way to have a single option to do the right thing in all cases? (I don't have...