From b1bf7f0524c6104032d38719c9fc72e10f13afcf Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Thu, 13 Jun 2024 07:08:28 -0700 Subject: [PATCH] Ignore `compile_invalid_pyc_invalidation_mode` on macOS (#4305) ## Summary This keeps failing in CI. --- crates/uv/tests/pip_sync.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/uv/tests/pip_sync.rs b/crates/uv/tests/pip_sync.rs index aa3327a1a..0379b9a3a 100644 --- a/crates/uv/tests/pip_sync.rs +++ b/crates/uv/tests/pip_sync.rs @@ -3214,6 +3214,7 @@ fn compile() -> Result<()> { /// Test that the `PYC_INVALIDATION_MODE` option is recognized and that the error handling works. #[test] +#[cfg_attr(target_os = "macos", ignore = "Fails spuriously on macOS")] fn compile_invalid_pyc_invalidation_mode() -> Result<()> { let context = TestContext::new("3.12");