We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
By default, rust will run tests in parallel, but this will cause the output to be misaligned.
The current solution is to use RUST_TEST_THREADS=1, --test-threads=1 or global mutex lock to limit only one test to run at the same time.
RUST_TEST_THREADS=1
--test-threads=1
Is there any better way?