mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-07 13:25:00 +00:00
Skip scenario tests on Windows (#2932)
These tests are about resolver correctness, which should not be platform dependent and Windows CI is horribly slow.
This commit is contained in:
parent
07e3694c3c
commit
d7ff8d93c0
4 changed files with 4 additions and 4 deletions
|
@ -3,7 +3,7 @@
|
|||
//! Generated with `./scripts/sync_scenarios.sh`
|
||||
//! Scenarios from <https://github.com/zanieb/packse/tree/0.3.12/scenarios>
|
||||
//!
|
||||
#![cfg(all(feature = "python", feature = "pypi"))]
|
||||
#![cfg(all(feature = "python", feature = "pypi", unix))]
|
||||
|
||||
use std::env;
|
||||
use std::process::Command;
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
//! Generated with `./scripts/sync_scenarios.sh`
|
||||
//! Scenarios from <https://github.com/zanieb/packse/tree/0.3.12/scenarios>
|
||||
//!
|
||||
#![cfg(all(feature = "python", feature = "pypi"))]
|
||||
#![cfg(all(feature = "python", feature = "pypi", unix))]
|
||||
|
||||
use std::path::Path;
|
||||
use std::process::Command;
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
//! Generated with `{{generated_with}}`
|
||||
//! Scenarios from <{{generated_from}}>
|
||||
//!
|
||||
#![cfg(all(feature = "python", feature = "pypi"))]
|
||||
#![cfg(all(feature = "python", feature = "pypi", unix))]
|
||||
|
||||
use std::env;
|
||||
use std::process::Command;
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
//! Generated with `{{generated_with}}`
|
||||
//! Scenarios from <{{generated_from}}>
|
||||
//!
|
||||
#![cfg(all(feature = "python", feature = "pypi"))]
|
||||
#![cfg(all(feature = "python", feature = "pypi", unix))]
|
||||
|
||||
use std::path::Path;
|
||||
use std::process::Command;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue