Skip to content

Commit

Permalink
echo ouput dir instead of calling open
Browse files Browse the repository at this point in the history
some ppl don't have `open`
  • Loading branch information
tbro committed Mar 14, 2024
1 parent 5011948 commit 407d66b
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 @@ -86,7 +86,7 @@ dev-deploy url="http://localhost:8545" mnemonics="test test test test test test
# This is meant for local development and produces HTML output. In CI
# the lcov output is pushed to coveralls.
code-coverage:
echo "Running code coverage"
@echo "Running code coverage"
nix develop .#coverage -c cargo test --all-features --no-fail-fast --release --workspace -- --skip service::test::test_
grcov . -s . --binary-path $CARGO_TARGET_DIR/debug/ -t html --branch --ignore-not-existing -o $CARGO_TARGET_DIR/coverage/
open $CARGO_TARGET_DIR/coverage/index.html
@echo "HTML report available at: $CARGO_TARGET_DIR/coverage/index.html"

0 comments on commit 407d66b

Please sign in to comment.