Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
rad: Disable tests that use `sed` on macos
Sebastian Martinez committed 2 years ago
commit 3366535c9d8b2ed123bd50d15468aa41d02bd9fc
parent 5cb4d5cd7629d30e95413d91356d1182d34383f1
1 file changed +5 -1
modified radicle-cli/tests/commands.rs
@@ -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);