You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Test module uses Distribution.TestSuite to interface with Cabal for testing the package. When the package is built and tested as usual using the following command:
cabal configure --enable-tests && cabal build && cabal test
The test part gets stuck showing "Running" if I test my properties against a number of generated instances (of small size) larger than some threshold.
However, if I run the main function in the Test module in ghci (loading by: ghci test/Test.hs -isrc), it works fine!
The function test also works fine in ghci when called even with 10000 instances.
The text was updated successfully, but these errors were encountered:
Test module uses Distribution.TestSuite to interface with Cabal for testing the package. When the package is built and tested as usual using the following command:
cabal configure --enable-tests && cabal build && cabal test
The test part gets stuck showing "Running" if I test my properties against a number of generated instances (of small size) larger than some threshold.
However, if I run the main function in the Test module in ghci (loading by: ghci test/Test.hs -isrc), it works fine!
The function test also works fine in ghci when called even with 10000 instances.
The text was updated successfully, but these errors were encountered: