MikeSchulze / gdUnit4

A Godot Unit Test Framework. Support for GDScript and C# unit testing
MIT License
565 stars 30 forks source link

GD-497: Execute the test discovery in an additional thread so as not to block the main thread. #497

Closed MikeSchulze closed 3 months ago

MikeSchulze commented 3 months ago

Is your feature request related to a problem? Please describe. On big projects with a lot of test coverage can exist, and the test discovery task can take a while. When the test discovery is running, results in the main thread is blocked and the UI hangs for a while.

Describe the solution you'd like The test discovery should run in a separate thread, do not block the main thread.

Describe alternatives you've considered n/a