Conversation
Owner
Author
|
bors r+ |
bors bot
added a commit
that referenced
this pull request
Aug 15, 2021
54: Support trybuild (take 2) r=taiki-e a=taiki-e Fixes #32 The following patch is needed until dtolnay/trybuild#123 is merged: ```toml [patch.crates-io] trybuild = { git = "https://github.com/taiki-e/trybuild.git", branch = "target" } ``` --- Tested in the same way as #44 (comment) Co-authored-by: Taiki Endo <te316e89@gmail.com>
Contributor
|
Build failed: |
Owner
Author
|
bors r+ |
Contributor
|
Build succeeded: |
Merged
bors bot
added a commit
that referenced
this pull request
Aug 15, 2021
63: Release 0.1.0 r=taiki-e a=taiki-e Closes #35 Changes: - [Update clap to fix build error.](#59) - [Support latest version of trybuild.](#54) - [Change output directory of `--html` and `--open` options from `target/llvm-cov` to `target/llvm-cov/html`.](#62) - [You can now merge the coverages generated under different test conditions by using `--no-report` and `--no-run`.](#55) ```sh cargo clean cargo llvm-cov --no-report --features a cargo llvm-cov --no-report --features b cargo llvm-cov --no-run --lcov ``` - [Add environment variables to pass additional flags to llvm-cov/llvm-profdata.](#58) - `CARGO_LLVM_COV_FLAGS` to pass additional flags to llvm-cov. (value: space-separated list) - `CARGO_LLVM_PROFDATA_FLAGS` to pass additional flags to llvm-profdata. (value: space-separated list) - [Fix "Failed to load coverage" error when together used with trybuild.](#49) - [Fix bug in `--exclude` and `--package` options](#56) - [Fix bug in color-detection when both `--text` and `--output-dir` used.](#62) - [`--html` and `--open` options no longer outputs a summary at the same time.](#61) - [Recognize rustflags and rustdocflags set by config file.](#52) - Diagnostic improvements. Co-authored-by: Taiki Endo <te316e89@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #32
The following patch is needed until dtolnay/trybuild#123 is merged:
Tested in the same way as #44 (comment)