mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-07 21:35:00 +00:00
Add a git feature to tests (#325)
This commit is contained in:
parent
8463e92121
commit
ea28b3d0d3
3 changed files with 20 additions and 9 deletions
|
@ -65,3 +65,5 @@ predicates = { version = "3.0.4" }
|
||||||
python = []
|
python = []
|
||||||
# Introduces a dependency on PyPI.
|
# Introduces a dependency on PyPI.
|
||||||
pypi = []
|
pypi = []
|
||||||
|
# Introduces a dependency on Git.
|
||||||
|
git = []
|
||||||
|
|
|
@ -628,6 +628,7 @@ fn compile_sdist_url_dependency() -> Result<()> {
|
||||||
|
|
||||||
/// Resolve a specific Flask source distribution via a Git HTTPS dependency.
|
/// Resolve a specific Flask source distribution via a Git HTTPS dependency.
|
||||||
#[test]
|
#[test]
|
||||||
|
#[cfg(feature = "git")]
|
||||||
fn compile_git_https_dependency() -> Result<()> {
|
fn compile_git_https_dependency() -> Result<()> {
|
||||||
let temp_dir = assert_fs::TempDir::new()?;
|
let temp_dir = assert_fs::TempDir::new()?;
|
||||||
let cache_dir = assert_fs::TempDir::new()?;
|
let cache_dir = assert_fs::TempDir::new()?;
|
||||||
|
@ -668,6 +669,7 @@ fn compile_git_https_dependency() -> Result<()> {
|
||||||
|
|
||||||
/// Resolve a specific Flask branch via a Git HTTPS dependency.
|
/// Resolve a specific Flask branch via a Git HTTPS dependency.
|
||||||
#[test]
|
#[test]
|
||||||
|
#[cfg(feature = "git")]
|
||||||
fn compile_git_branch_https_dependency() -> Result<()> {
|
fn compile_git_branch_https_dependency() -> Result<()> {
|
||||||
let temp_dir = assert_fs::TempDir::new()?;
|
let temp_dir = assert_fs::TempDir::new()?;
|
||||||
let cache_dir = assert_fs::TempDir::new()?;
|
let cache_dir = assert_fs::TempDir::new()?;
|
||||||
|
@ -704,6 +706,7 @@ fn compile_git_branch_https_dependency() -> Result<()> {
|
||||||
|
|
||||||
/// Resolve a specific Flask tag via a Git HTTPS dependency.
|
/// Resolve a specific Flask tag via a Git HTTPS dependency.
|
||||||
#[test]
|
#[test]
|
||||||
|
#[cfg(feature = "git")]
|
||||||
fn compile_git_tag_https_dependency() -> Result<()> {
|
fn compile_git_tag_https_dependency() -> Result<()> {
|
||||||
let temp_dir = assert_fs::TempDir::new()?;
|
let temp_dir = assert_fs::TempDir::new()?;
|
||||||
let cache_dir = assert_fs::TempDir::new()?;
|
let cache_dir = assert_fs::TempDir::new()?;
|
||||||
|
@ -740,6 +743,7 @@ fn compile_git_tag_https_dependency() -> Result<()> {
|
||||||
|
|
||||||
/// Resolve a specific Flask commit via a Git HTTPS dependency.
|
/// Resolve a specific Flask commit via a Git HTTPS dependency.
|
||||||
#[test]
|
#[test]
|
||||||
|
#[cfg(feature = "git")]
|
||||||
fn compile_git_long_commit_https_dependency() -> Result<()> {
|
fn compile_git_long_commit_https_dependency() -> Result<()> {
|
||||||
let temp_dir = assert_fs::TempDir::new()?;
|
let temp_dir = assert_fs::TempDir::new()?;
|
||||||
let cache_dir = assert_fs::TempDir::new()?;
|
let cache_dir = assert_fs::TempDir::new()?;
|
||||||
|
@ -778,6 +782,7 @@ fn compile_git_long_commit_https_dependency() -> Result<()> {
|
||||||
|
|
||||||
/// Resolve a specific Flask commit via a Git HTTPS dependency.
|
/// Resolve a specific Flask commit via a Git HTTPS dependency.
|
||||||
#[test]
|
#[test]
|
||||||
|
#[cfg(feature = "git")]
|
||||||
fn compile_git_short_commit_https_dependency() -> Result<()> {
|
fn compile_git_short_commit_https_dependency() -> Result<()> {
|
||||||
let temp_dir = assert_fs::TempDir::new()?;
|
let temp_dir = assert_fs::TempDir::new()?;
|
||||||
let cache_dir = assert_fs::TempDir::new()?;
|
let cache_dir = assert_fs::TempDir::new()?;
|
||||||
|
@ -814,6 +819,7 @@ fn compile_git_short_commit_https_dependency() -> Result<()> {
|
||||||
|
|
||||||
/// Resolve a specific Flask ref via a Git HTTPS dependency.
|
/// Resolve a specific Flask ref via a Git HTTPS dependency.
|
||||||
#[test]
|
#[test]
|
||||||
|
#[cfg(feature = "git")]
|
||||||
fn compile_git_refs_https_dependency() -> Result<()> {
|
fn compile_git_refs_https_dependency() -> Result<()> {
|
||||||
let temp_dir = assert_fs::TempDir::new()?;
|
let temp_dir = assert_fs::TempDir::new()?;
|
||||||
let cache_dir = assert_fs::TempDir::new()?;
|
let cache_dir = assert_fs::TempDir::new()?;
|
||||||
|
@ -851,6 +857,7 @@ fn compile_git_refs_https_dependency() -> Result<()> {
|
||||||
|
|
||||||
/// Resolve a specific Git dependency with a subdirectory.
|
/// Resolve a specific Git dependency with a subdirectory.
|
||||||
#[test]
|
#[test]
|
||||||
|
#[cfg(feature = "git")]
|
||||||
fn compile_git_subdirectory_dependency() -> Result<()> {
|
fn compile_git_subdirectory_dependency() -> Result<()> {
|
||||||
let temp_dir = assert_fs::TempDir::new()?;
|
let temp_dir = assert_fs::TempDir::new()?;
|
||||||
let cache_dir = assert_fs::TempDir::new()?;
|
let cache_dir = assert_fs::TempDir::new()?;
|
||||||
|
@ -868,7 +875,7 @@ fn compile_git_subdirectory_dependency() -> Result<()> {
|
||||||
|
|
||||||
let requirements_in = temp_dir.child("requirements.in");
|
let requirements_in = temp_dir.child("requirements.in");
|
||||||
requirements_in.touch()?;
|
requirements_in.touch()?;
|
||||||
requirements_in.write_str("hypothesis @ git+https://github.com/Zac-HD/hypothesis.git@ablation-mutation#subdirectory=hypothesis-python")?;
|
requirements_in.write_str("example-pkg-a @ git+https://github.com/pypa/sample-namespace-packages.git@df7530eeb8fa0cb7dbb8ecb28363e8e36bfa2f45#subdirectory=pkg_resources/pkg_a")?;
|
||||||
|
|
||||||
insta::with_settings!({
|
insta::with_settings!({
|
||||||
filters => INSTA_FILTERS.to_vec()
|
filters => INSTA_FILTERS.to_vec()
|
||||||
|
@ -887,6 +894,7 @@ fn compile_git_subdirectory_dependency() -> Result<()> {
|
||||||
|
|
||||||
/// Resolve two packages from a `requirements.in` file with the same Git HTTPS dependency.
|
/// Resolve two packages from a `requirements.in` file with the same Git HTTPS dependency.
|
||||||
#[test]
|
#[test]
|
||||||
|
#[cfg(feature = "git")]
|
||||||
fn compile_git_concurrent_access() -> Result<()> {
|
fn compile_git_concurrent_access() -> Result<()> {
|
||||||
let temp_dir = assert_fs::TempDir::new()?;
|
let temp_dir = assert_fs::TempDir::new()?;
|
||||||
let cache_dir = assert_fs::TempDir::new()?;
|
let cache_dir = assert_fs::TempDir::new()?;
|
||||||
|
@ -924,6 +932,7 @@ fn compile_git_concurrent_access() -> Result<()> {
|
||||||
|
|
||||||
/// Resolve a Git dependency with a declared name that differs from the true name of the package.
|
/// Resolve a Git dependency with a declared name that differs from the true name of the package.
|
||||||
#[test]
|
#[test]
|
||||||
|
#[cfg(feature = "git")]
|
||||||
fn compile_git_mismatched_name() -> Result<()> {
|
fn compile_git_mismatched_name() -> Result<()> {
|
||||||
let temp_dir = assert_fs::TempDir::new()?;
|
let temp_dir = assert_fs::TempDir::new()?;
|
||||||
let cache_dir = assert_fs::TempDir::new()?;
|
let cache_dir = assert_fs::TempDir::new()?;
|
||||||
|
@ -1109,6 +1118,7 @@ fn conflicting_repeated_url_dependency_version_mismatch() -> Result<()> {
|
||||||
/// Request Werkzeug via two different URLs at the same version. Despite mapping to the same
|
/// Request Werkzeug via two different URLs at the same version. Despite mapping to the same
|
||||||
/// version, it should still result in a conflict.
|
/// version, it should still result in a conflict.
|
||||||
#[test]
|
#[test]
|
||||||
|
#[cfg(feature = "git")]
|
||||||
fn conflicting_repeated_url_dependency_version_match() -> Result<()> {
|
fn conflicting_repeated_url_dependency_version_match() -> Result<()> {
|
||||||
let temp_dir = assert_fs::TempDir::new()?;
|
let temp_dir = assert_fs::TempDir::new()?;
|
||||||
let cache_dir = assert_fs::TempDir::new()?;
|
let cache_dir = assert_fs::TempDir::new()?;
|
||||||
|
@ -1182,6 +1192,7 @@ fn conflicting_transitive_url_dependency() -> Result<()> {
|
||||||
/// Request `transitive_url_dependency`, which depends on `git+https://github.com/pallets/werkzeug@2.0.0`.
|
/// Request `transitive_url_dependency`, which depends on `git+https://github.com/pallets/werkzeug@2.0.0`.
|
||||||
/// Since this URL isn't declared upfront, we should reject it.
|
/// Since this URL isn't declared upfront, we should reject it.
|
||||||
#[test]
|
#[test]
|
||||||
|
#[cfg(feature = "git")]
|
||||||
fn disallowed_transitive_url_dependency() -> Result<()> {
|
fn disallowed_transitive_url_dependency() -> Result<()> {
|
||||||
let temp_dir = assert_fs::TempDir::new()?;
|
let temp_dir = assert_fs::TempDir::new()?;
|
||||||
let cache_dir = assert_fs::TempDir::new()?;
|
let cache_dir = assert_fs::TempDir::new()?;
|
||||||
|
@ -1219,6 +1230,7 @@ fn disallowed_transitive_url_dependency() -> Result<()> {
|
||||||
/// Request `transitive_url_dependency`, which depends on `git+https://github.com/pallets/werkzeug@2.0.0`.
|
/// Request `transitive_url_dependency`, which depends on `git+https://github.com/pallets/werkzeug@2.0.0`.
|
||||||
/// Since this URL is declared as a constraint, we should accept it.
|
/// Since this URL is declared as a constraint, we should accept it.
|
||||||
#[test]
|
#[test]
|
||||||
|
#[cfg(feature = "git")]
|
||||||
fn allowed_transitive_url_dependency() -> Result<()> {
|
fn allowed_transitive_url_dependency() -> Result<()> {
|
||||||
let temp_dir = assert_fs::TempDir::new()?;
|
let temp_dir = assert_fs::TempDir::new()?;
|
||||||
let cache_dir = assert_fs::TempDir::new()?;
|
let cache_dir = assert_fs::TempDir::new()?;
|
||||||
|
@ -1263,6 +1275,7 @@ fn allowed_transitive_url_dependency() -> Result<()> {
|
||||||
/// Since this `git+https://github.com/pallets/werkzeug@2.0.0.git` is declared as a constraint, and
|
/// Since this `git+https://github.com/pallets/werkzeug@2.0.0.git` is declared as a constraint, and
|
||||||
/// those map to the same canonical URL, we should accept it.
|
/// those map to the same canonical URL, we should accept it.
|
||||||
#[test]
|
#[test]
|
||||||
|
#[cfg(feature = "git")]
|
||||||
fn allowed_transitive_canonical_url_dependency() -> Result<()> {
|
fn allowed_transitive_canonical_url_dependency() -> Result<()> {
|
||||||
let temp_dir = assert_fs::TempDir::new()?;
|
let temp_dir = assert_fs::TempDir::new()?;
|
||||||
let cache_dir = assert_fs::TempDir::new()?;
|
let cache_dir = assert_fs::TempDir::new()?;
|
||||||
|
|
|
@ -6,21 +6,17 @@ info:
|
||||||
- pip-compile
|
- pip-compile
|
||||||
- requirements.in
|
- requirements.in
|
||||||
- "--cache-dir"
|
- "--cache-dir"
|
||||||
- /var/folders/nt/6gf2v7_s3k13zq_t3944rwz40000gn/T/.tmpfUuY8I
|
- /var/folders/nt/6gf2v7_s3k13zq_t3944rwz40000gn/T/.tmpIFmS4Z
|
||||||
env:
|
env:
|
||||||
VIRTUAL_ENV: /var/folders/nt/6gf2v7_s3k13zq_t3944rwz40000gn/T/.tmpIJnuRB/.venv
|
VIRTUAL_ENV: /var/folders/nt/6gf2v7_s3k13zq_t3944rwz40000gn/T/.tmp7GFnaJ/.venv
|
||||||
---
|
---
|
||||||
success: true
|
success: true
|
||||||
exit_code: 0
|
exit_code: 0
|
||||||
----- stdout -----
|
----- stdout -----
|
||||||
# This file was autogenerated by Puffin v0.0.1 via the following command:
|
# This file was autogenerated by Puffin v0.0.1 via the following command:
|
||||||
# [BIN_PATH] pip-compile requirements.in --cache-dir [CACHE_DIR]
|
# [BIN_PATH] pip-compile requirements.in --cache-dir [CACHE_DIR]
|
||||||
attrs==23.1.0
|
example-pkg-a @ git+https://github.com/pypa/sample-namespace-packages.git@df7530eeb8fa0cb7dbb8ecb28363e8e36bfa2f45#subdirectory=pkg_resources/pkg_a
|
||||||
# via hypothesis
|
|
||||||
hypothesis @ git+https://github.com/Zac-HD/hypothesis.git@3812dd1e1d5bc7a4e76399556988b7adaea7751d#subdirectory=hypothesis-python
|
|
||||||
sortedcontainers==2.4.0
|
|
||||||
# via hypothesis
|
|
||||||
|
|
||||||
----- stderr -----
|
----- stderr -----
|
||||||
Resolved 3 packages in [TIME]
|
Resolved 1 package in [TIME]
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue