Skip to content

Commit

Permalink
Merge pull request #42 from vorner/coverage
Browse files Browse the repository at this point in the history
Include doctests in coverage
  • Loading branch information
vorner committed Nov 23, 2020
2 parents 6e689b3 + e7bea99 commit 61994b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Expand Up @@ -103,7 +103,7 @@ jobs:
- name: Run cargo-tarpaulin
uses: actions-rs/tarpaulin@v0.1
with:
args: '--all-features'
args: '--all-features --run-types Doctests,Tests'
timeout: 120

- name: Upload to codecov.io
Expand Down

1 comment on commit 61994b3

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Track benchmarks

Benchmark suite Current: 61994b3 Previous: 6e689b3 Ratio
uncontended/load 20 ns/iter (± 0) 22 ns/iter (± 0) 0.91
uncontended/load_full 32 ns/iter (± 1) 36 ns/iter (± 1) 0.89
uncontended/load_many 2342 ns/iter (± 98) 2603 ns/iter (± 135) 0.90
uncontended/store 128 ns/iter (± 4) 139 ns/iter (± 0) 0.92
concurrent_loads/load 30 ns/iter (± 12) 24 ns/iter (± 14) 1.25
concurrent_loads/load_full 50 ns/iter (± 17) 40 ns/iter (± 17) 1.25
concurrent_loads/load_many 3768 ns/iter (± 1305) 2648 ns/iter (± 1255) 1.42
concurrent_loads/store 1040 ns/iter (± 444) 1349 ns/iter (± 434) 0.77
concurrent_store/load 112 ns/iter (± 1) 103 ns/iter (± 7) 1.09
concurrent_store/load_full 176 ns/iter (± 8) 157 ns/iter (± 4) 1.12
concurrent_store/load_many 7001 ns/iter (± 258) 6945 ns/iter (± 128) 1.01
concurrent_store/store 1398 ns/iter (± 38) 1399 ns/iter (± 179) 1.00

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.