johnynek / bosatsu

A python-ish pure and total functional programming language
Apache License 2.0
224 stars 11 forks source link

use parallelism and streaming in bosatsu test #1180

Open johnynek opened 6 months ago

johnynek commented 6 months ago

currently we test with 1 core it seems and wait until all results are ready to print anything.

Both harm usability when the number of tests gets large.

johnynek commented 6 months ago

This isn't trivial since MatchlessToValue is using mutability and the obvious approach fails due to races.