I have a collection of tests. There are a few tests that need to access a shared resource (external library/API/hardware device). If any of these tests run in parallel, they
Use the serial_test crate. With this crate added, you put in your code:
#[serial]
in front of any test you want run in sequentially.