clippy clip

This commit is contained in:
Jop Zitman 2025-12-19 17:13:07 +01:00
parent 28cd5a4e44
commit 676e7f02b4

View file

@ -3563,6 +3563,7 @@ fn install_constraints_txt() -> Result<()> {
/// Install a package from a `requirements.txt` file, with a `constraints.txt` file.
#[test]
#[allow(clippy::disallowed_types)]
fn install_constraints_txt_from_stdin() -> Result<()> {
let context = TestContext::new("3.12");
let requirements_txt = context.temp_dir.child("requirements.txt");
@ -7338,6 +7339,7 @@ fn require_hashes_override() -> Result<()> {
/// Install with overrides from stdin.
#[test]
#[allow(clippy::disallowed_types)]
fn install_with_overrides_from_stdin() -> Result<()> {
let context = TestContext::new("3.12");
@ -7368,6 +7370,7 @@ fn install_with_overrides_from_stdin() -> Result<()> {
/// Install with excludes from stdin.
#[test]
#[allow(clippy::disallowed_types)]
fn install_with_excludes_from_stdin() -> Result<()> {
let context = TestContext::new("3.12");
@ -8693,6 +8696,7 @@ fn incompatible_build_constraint() -> Result<()> {
/// Include a `build_constraints.txt` file with an incompatible constraint from stdin.
#[test]
#[allow(clippy::disallowed_types)]
fn incompatible_build_constraint_from_stdin() -> Result<()> {
let context = TestContext::new(DEFAULT_PYTHON_VERSION);