Issue
Make default_log_filter stable by implementing a parallel-friendly way to manage environment variables.
Proposed Solution
The commit putting the default_log_filter attribute behind the "unstable" feature is awesome, but to get things stable, we could look to sealed-test, which solves the problem by forking unit tests into separate processes.
The shortcomings of sealed-test are that it doesn't support async and hasn't been updated in a while.
Issue
Make
default_log_filterstable by implementing a parallel-friendly way to manage environment variables.Proposed Solution
The commit putting the
default_log_filterattribute behind the "unstable" feature is awesome, but to get things stable, we could look tosealed-test, which solves the problem by forking unit tests into separate processes.The shortcomings of
sealed-testare that it doesn't support async and hasn't been updated in a while.