Since beta 3:
Added
- Setup scripts are now represented in the JUnit output. For more information,
see Setup scripts in JUnit output.
Changed
-
Each test now has a separate Tokio task associated with it. This leads to
greater reliability (each test's task can now panic independently), and is
faster in repos with many small tests.For example, in one test done against
clap-rs/clapon Linux,cargo nextest rungoes down from 0.36 seconds to 0.23 seconds.
Fixed
- Fixed a bug where pressing two Ctrl-Cs in succession would not
SIGKILLany running tests. junit.store-success-outputnow works correctly -- previously, storage of output is disabled unconditionally.- In JUnit output, the
testsuiteelements are now stored in the order they are first seen (IndexMap), rather than in random order (HashMap).