We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cargo coverage
RUSTFLAGS
build.rustflags
The RUSTFLAGS environment variable and build.rustflags (and target.XYZ.rustflags) configuration key allow passing manual arguments to all rustc invocations in a build. It seems cargo coverage doesn't use them, e.g. RUSTFLAGS=invalid cargo coverage should try to rebuild everything and fail because the argument doesn't make sense.
target.XYZ.rustflags
RUSTFLAGS=invalid cargo coverage
The text was updated successfully, but these errors were encountered:
cargo coverage --release
https://github.com/roblabla/cargo-travis/blob/master/src/bin/cargo-coverage.rs#L138 is the culprit. This should probably concat instead of setting unconditionally. PR welcome.
Sorry, something went wrong.
07a83f9
No branches or pull requests
The
RUSTFLAGS
environment variable andbuild.rustflags
(andtarget.XYZ.rustflags
) configuration key allow passing manual arguments to all rustc invocations in a build. It seemscargo coverage
doesn't use them, e.g.RUSTFLAGS=invalid cargo coverage
should try to rebuild everything and fail because the argument doesn't make sense.The text was updated successfully, but these errors were encountered: