Remove integration tests from uv-resolver (#4083)

## Summary

I don't think it's worth maintaining this separate test harness for ~18
tests, when they can all be tested in the `uv` package itself. Let's
drop the maintenance burden.
This commit is contained in:
Charlie Marsh 2024-06-05 21:48:42 -04:00 committed by GitHub
parent 0acae9bd9c
commit 120148f0a1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 0 additions and 825 deletions

View file

@ -27,16 +27,6 @@ pub struct Preference {
}
impl Preference {
/// Create a simple [`Preference`] with no hashes.
pub fn simple(name: PackageName, version: Version) -> Self {
Self {
name,
version,
marker: None,
hashes: Vec::new(),
}
}
/// Create a [`Preference`] from a [`RequirementEntry`].
pub fn from_entry(entry: RequirementEntry) -> Result<Option<Self>, PreferenceError> {
let RequirementsTxtRequirement::Named(requirement) = entry.requirement else {