A facial recognition login service for Linux.
2

Configure Feed

Select the types of activity you want to include in your feed.

just: Drop --no-tests=pass from test-unit recipe

The flag existed only so the empty M1 skeleton didn't fail nextest's
default 'no tests is an error' behaviour. With real unit tests now present
in `pareidolia-core`, the guard is misleading: it would silently hide a
future regression where the test target stops emitting any tests at all.

Isaac Corbrey (May 27, 2026, 9:44 AM EDT) 101b04a6 f38df4d7

+1 -3
+1 -3
justfile
··· 19 19 20 20 # Unit tests only — every crate's in-source `#[cfg(test)]` blocks. 21 21 # Excludes the integration-tests crate to keep this fast. 22 - # `--no-tests=pass` so the M1 skeleton (which has zero unit tests yet) doesn't 23 - # fail the lane. Remove once real unit tests land in M2+. 24 22 test-unit: 25 - cargo nextest run --workspace --lib --no-tests=pass 23 + cargo nextest run --workspace --lib 26 24 27 25 # Everything the per-push CI job runs. 28 26 ci-fast: fmt-check lint test-unit