Skip to content

Instantly share code, notes, and snippets.

@lmmx
Created May 10, 2025 15:29
Show Gist options
  • Save lmmx/65fe4399ecd9c34aa0afeea36c7451c0 to your computer and use it in GitHub Desktop.
Save lmmx/65fe4399ecd9c34aa0afeea36c7451c0 to your computer and use it in GitHub Desktop.
Loop through workspace crates running tests one by one to review outputs
for x in *-*; do pushd $x >/dev/null; echo $x; cargo test -q --no-run; just -f ../Justfile -d . test; read dummyvar; popd; clear; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment