# just manual: https://github.com/casey/just#readme
_default:
just --list
# Run all tests with nextest and cargo-llvm-cov
ci-test:
#!/bin/bash -eux
cargo llvm-cov nextest --lcov --output-path coverage.lcov
codecov
# Show coverage locally
cov:
#!/bin/bash -eux
cargo llvm-cov nextest --hide-instantiations --html --output-dir coverage
# Run all tests
test *args:
RUST_BACKTRACE=1 cargo nextest run {{args}}