-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Labels
Description
Is your feature request related to a problem? Please describe.
The JSON frontend currently executes test suites in a for loop. For large datasets, this can be quite slow. It would be good if we could execute tests in parallel to speed things up a bit, although it is desirable to preserve the order in which results are presented.
I believe the easiest way to do this would be to have the msg object be returned, and then we could just use multiprocessing and pool.map.