mirror of
https://github.com/warp-tech/warpgate.git
synced 2024-11-10 09:12:56 +08:00
9 lines
288 B
Bash
Executable file
9 lines
288 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
cd ..
|
|
rm target/llvm-cov-target/* || true
|
|
cargo llvm-cov clean --workspace
|
|
cargo llvm-cov --no-cfg-coverage-nightly --no-report --workspace --all-features -- --skip agent
|
|
cd tests
|
|
RUST_BACKTRACE=1 poetry run pytest $@
|
|
cargo llvm-cov --no-run --hide-instantiations --html
|