Run a property-test's iterations in parallel?

126 views Asked by At

I have a property-based test (in Hedgehog), that does the following:

  • Push an item to a remote service that queues it
  • Poll the remote service to figure out when the item was processed
  • Assert some properties on the item's processing results

The test is running very slow because the 100 iterations are run sequentially. Is there any way to parallelize this? checkParallel sounds like it runs multiple property-tests in parallel, whereas I want multiple iterations of the same test to be run in parallel?

0

There are 0 answers