rad: Disable tests that use `sed` on macos

Due to differences between how BSD sed and GNU sed work, we disable for
now tests that use sed on macos

Signed-off-by: Sebastian Martinez <me@sebastinez.dev>
This commit is contained in:
Sebastian Martinez 2023-07-25 15:46:13 +02:00 committed by Alexis Sellier
parent 5cb4d5cd76
commit 3366535c9d
No known key found for this signature in database
1 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,6 @@
use std::path::Path;
use std::str::FromStr;
use std::{env, fs, thread, time};
use std::{env, thread, time};
use radicle::git;
use radicle::node::Alias;
@ -298,7 +298,10 @@ fn rad_patch_update() {
}
#[test]
#[cfg(not(target_os = "macos"))]
fn rad_patch_ahead_behind() {
use std::fs;
let mut environment = Environment::new();
let profile = environment.profile("alice");
let working = tempfile::tempdir().unwrap();
@ -362,6 +365,7 @@ fn rad_patch_via_push() {
}
#[test]
#[cfg(not(target_os = "macos"))]
fn rad_review_by_hunk() {
logger::init(log::Level::Debug);