Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: Only run clippy lint test with -Dwarnings
Currently, every cargo invocation in the integration tests runs with -Dwarnings. This is fairly annoying, because it causes all tests to fail if there is a single compilation warning emitted somewhere. When locally testing some changes, this means that code needs to be cleaned up to fix all warnings before any test can be run, which makes rapid prototyping very slow. This commit changes our testing to only pass -Dwarnings to our clippy lint test. This way we still block CI on compiler warnings, but no longer prevent literally every test from running if a single warning is emitted anywhere. Signed-off-by: Patrick Roy <[email protected]>
- Loading branch information