Parallelize running integration tests with rayon #3437
Labels
🎉 enhancement
New feature!
priority-medium
Medium priority issue
🏚 stale
Inactive issues or PR
🧪 tests
I love tests
Right now in #3353 we are running integration tests with a single thread, which is especially slow when running the
create-exe
tests because of compilation. We should run these tests in parallel, however the last time I tried doing that I ran into problems withstatic_defs.h
being written to from multiple threads (race condition on disk). We should switch to temp directories when refactoring the create-exe code, then re-enable rayon.The text was updated successfully, but these errors were encountered: