Speedup tests#153
Open
schneems wants to merge 2 commits into
Open
Conversation
The inventory_check doctest executed a real ~tens-of-MB tarball download from S3 and checksummed it, costing ~3s per `cargo test` run and adding network flakiness. Marking the fence `no_run` keeps the example compile-checked (so it can't rot) without running the download. Real artifact verification still happens via the inventory_check binary in CI. Drops `Doc-tests shared` from ~3.03s to ~0.01s.
`with_retries` sleeps `RETRY_DELAY` (1s) between attempts, so any test exercising a failing request (e.g. `test_download_tar_404`) paid ~2s of pure wall-clock sleep. Compile `RETRY_DELAY` to 0ms under `cfg(test)` so the retry logic is still fully exercised without the delay. Production builds keep the 1s delay.
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.
Before:
After: