Fix build on windows

This commit is contained in:
nora 2023-04-09 20:08:57 +02:00
parent f28fdd46a8
commit 8143bbf87e

View file

@ -17,7 +17,14 @@ use std::{
use tempfile::TempDir;
#[test]
#[cfg_attr(not(unix), ignore = "FIXME: Make this not cursed.")]
#[ignore = "FIXME: Make this not cursed."]
#[cfg(not(unix))]
fn full_tests() -> Result<()> {
todo!()
}
#[test]
#[cfg(unix)]
fn full_tests() -> Result<()> {
let exit = Command::new("cargo")
.arg("build")