Allows for the creation of sequential tests. ```rust
mod tests {
#[test]
#[sequential]
fn test1() {
// ...
}
#[test]
#[sequential]
fn test2() {
// ...
}
#[test]
#[parallel]
fn test3() {
// ...
}
}
``
- Tests with the
sequentialattribute are guaranteed to be executed sequentially.
- Tests with the
parallelattribute may run in parallel of each other but will not run
at the same time as tests with the
sequential` attribute.
- Tests with neither attributes may run in parallel with any tests.
Defining sequential
or parallel
attributes on non-tests or within scopes is
considered UB.
This library is both faster[^speed] and smaller than
serial_test
however offers less functionality.
of ~350ms while serial_test
covers the test set in
an average of ~550ms.