UnkindPartition / tasty

Modern and extensible testing framework for Haskell
638 stars 108 forks source link

Drop dependency on `call-stack` #339

Closed hasufell closed 2 years ago

hasufell commented 2 years ago

I'm trying to use tasty-hunit in filepath in the test-suite, but call-stack itself depends on filepath, so I get circular imports.

The library doesn't seem necessary, so I suggest to drop it.

Bodigrim commented 2 years ago

Is it possible to rewrite your tests to use solely tasty-quickcheck instead of tasty-hunit? Cf. https://github.com/haskell/bytestring/commit/583cef086abcdff977b6787a15351aa4b88a4400

hasufell commented 2 years ago

Yes, I dropped all tasty dependencies and use raw QuickCheck directly.