Skip to content

Commit

Permalink
test: fix test command to exclude invalid paths (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuhr authored Apr 21, 2023
1 parent 59036aa commit 92910a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ setup:
git config --local core.hooksPath .githooks

test *ARGS:
for project in `ls examples`; do \
RUST_BACKTRACE=1 cargo test --manifest-path examples/$project/Cargo.toml --workspace {{ARGS}} -- --nocapture; \
for project in examples/example-*; do \
RUST_BACKTRACE=1 cargo test --manifest-path $project/Cargo.toml --workspace {{ARGS}} -- --nocapture; \
done

bump *ARGS:
Expand Down

0 comments on commit 92910a6

Please sign in to comment.