Ignore .sh-requiring tests on Windows
diff --git a/tests/test_precedence.rs b/tests/test_precedence.rs
index d86e66a..d4d086d 100644
--- a/tests/test_precedence.rs
+++ b/tests/test_precedence.rs
@@ -86,6 +86,7 @@
/// Test expressions from rustc, like in `test_round_trip`.
#[test]
+#[cfg_attr(target_os = "windows", ignore = "requires nix .sh")]
fn test_rustc_precedence() {
common::clone_rust();
let abort_after = common::abort_after();
diff --git a/tests/test_round_trip.rs b/tests/test_round_trip.rs
index e879501..4c7886a 100644
--- a/tests/test_round_trip.rs
+++ b/tests/test_round_trip.rs
@@ -34,6 +34,7 @@
use common::eq::SpanlessEq;
#[test]
+#[cfg_attr(target_os = "windows", ignore = "requires nix .sh")]
fn test_round_trip() {
common::clone_rust();
let abort_after = common::abort_after();