-
Notifications
You must be signed in to change notification settings - Fork 251
New issue
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
CI: Run tests with cargo-nextest #512
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportBase: 50.42% // Head: 50.80% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## non-consensus-changes-on-branchid-37519621 #512 +/- ##
==============================================================================
+ Coverage 50.42% 50.80% +0.38%
==============================================================================
Files 90 97 +7
Lines 8306 9522 +1216
==============================================================================
+ Hits 4188 4838 +650
- Misses 4118 4684 +566
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
Hmm, this actually ends up taking longer, because for some reason the sequence of compiles it triggers takes longer overall, plus we have several minutes compiling and installing |
BTW nextest is now available as pre-built binaries, if you're interested in using them: https://nexte.st/book/pre-built-binaries |
(Below I ignore the 2m 50s for building the param-fetching binary, which is unchanged)
Switching to |
Speculation: is there any way we can do sophisticated / fine-grained build caching in CI, since that's the bottleneck? I've experimented with a few cargo build caching github actions without much luck. I think I just don't understand gh CI well enough to understand how to do it well. |
Maintainer of nextest here -- it's a bit surprising that doctests cause a rebuild because I don't see that on my own projects, it's worth digging into why that is happening. Wondering if there's something related to proc macros going on (not sure if you have any).
Sadly the two are related -- |
No description provided.