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:
Zanie Blue
2024-04-09 09:57:30 -05:00
committed by GitHub
parent 07e3694c3c
commit d7ff8d93c0
4 changed files with 4 additions and 4 deletions

View File

@@ -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;

View File

@@ -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;