-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Always replace metadata when replacing package #5564
Conversation
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @alexcrichton (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
Perhaps the manifest file could be manually read here to assert that the updated revision is reflected there? |
I'm not familiar with cargo code base. I came here because of nabijaczleweli/cargo-update#55 to be honest. Could you point me where should I start searching? |
Ah no worries! In the tests I believe you can use |
I thought about cargo function parsing |
Updated test does fail for non patched code and succeeds with fix applied. |
@bors: r+ Thanks! |
📌 Commit 059107e has been approved by |
Always replace metadata when replacing package Fixes #4582 I'm having problem writing test for it. The test should install binary, make commit and reinstall binary, this part is done. To know if it was done properly we need to compare git revision of HEAD and installed binary and that's where the problems begin...
☀️ Test successful - status-appveyor, status-travis |
Thanks 👍 |
Certainly! A PR any time is fine, it's done on an as-needed basis |
Opened rust-lang/rust#51062 |
Fixes #4582
I'm having problem writing test for it.
The test should install binary, make commit and reinstall binary, this part is done.
To know if it was done properly we need to compare git revision of HEAD and installed binary and that's where the problems begin...