Run rust unit tests (including doc tests)#2421
Merged
sporksmith merged 1 commit intoshadow:mainfrom Sep 28, 2022
Merged
Conversation
487325e to
19536f5
Compare
robgjansen
approved these changes
Sep 28, 2022
19536f5 to
abce70c
Compare
Accidentally dropped running any rust unit tests in shadow#2404 We were also previously not running doc tests, and I think not running tests for any crates for which we don't build a `staticlib` for C code to link to. (I'm not sure whether there were any such tests before, but there increasingly will be) For simplicity and maintainability I just invoke `cargo test` now, instead of trying to directly run the test executables. While the cargo behavior of always rebuilding (if needed) may be slightly surprising, this approach should be more robust and maintainable.
abce70c to
0f18637
Compare
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.
Accidentally dropped running any rust unit tests in #2404
We were also previously not running doc tests, and I think not running tests for any crates for which we don't build a
staticlibfor C code to link to. (I'm not sure whether there were any such tests before, but there increasingly will be)For simplicity and maintainability I just invoke
cargo testnow, instead of trying to directly run the test executables. While the cargo behavior of always rebuilding (if needed) may be slightly surprising, this approach should be more robust and maintainable.