We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 546a6de commit b07e9e7Copy full SHA for b07e9e7
.github/workflows/ci.yml
@@ -53,6 +53,7 @@ jobs:
53
needs: [test]
54
runs-on: ubuntu-latest
55
env:
56
+ RUST_LOG: debug
57
RUSTFLAGS: -Cinstrument-coverage
58
steps:
59
- uses: actions/checkout@v2
@@ -66,7 +67,7 @@ jobs:
66
67
- run: cargo install grcov
68
- run: cargo build --verbose
69
- name: Run tests
- run: LLVM_PROFILE_FILE="zookeeper-client-%p-%m.profraw" cargo test --verbose
70
+ run: LLVM_PROFILE_FILE="zookeeper-client-%p-%m.profraw" cargo test --verbose -- --nocapture
71
- name: Generate coverage report
72
run: grcov $(find . -name "zookeeper-*.profraw" -print) --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore "/*" -o lcov.info
73
- name: Upload to codecov.io
0 commit comments