Workaround for #142 (#144)

This commit is contained in:
Eliza Weisman
2017-10-09 18:36:13 -05:00
committed by Sean McArthur
parent 80e3478c00
commit cca5d8fb83

View File

@@ -34,7 +34,11 @@ script:
# Check with unstable flag # Check with unstable flag
- cargo check --features unstable - cargo check --features unstable
# Run tests, uploading results to codecov.. # Build the test executables in a separate step, since Tarpaulin
# will not fail on test compile errors.
- cargo build --tests --features unstable
# Run tests, uploading results to codecov.
# hpack tests are _super_ slow in coverage, so skip them here. # hpack tests are _super_ slow in coverage, so skip them here.
- cargo tarpaulin --features unstable --skip-clean --no-count --out Xml -- --skip hpack - cargo tarpaulin --features unstable --skip-clean --no-count --out Xml -- --skip hpack