Created
May 10, 2025 15:29
-
-
Save lmmx/65fe4399ecd9c34aa0afeea36c7451c0 to your computer and use it in GitHub Desktop.
Loop through workspace crates running tests one by one to review outputs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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