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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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;