Closed str4d closed 1 year ago
The syntax cargo test FILTER
doesn't work, because that requires every crate in the workspace to have a main()
when the test harness is disabled (and we need it disabled for the flipperzero
tests to work). You can use either cargo test -p flipperzero FILTER
or cargo test -- FILTER
instead.
This now enables test filtering: