remove windows cfgs

This commit is contained in:
nora 2023-04-11 11:35:43 +02:00
parent 0ed3e5188f
commit b3f08e6760
3 changed files with 0 additions and 88 deletions

View file

@ -2,14 +2,6 @@ use anyhow::{ensure, Result};
use std::process::Command;
#[test]
#[ignore = "FIXME: Make this not cursed."]
#[cfg(not(unix))]
fn full_tests() -> Result<()> {
todo!()
}
#[test]
#[cfg(unix)]
fn full_tests() -> Result<()> {
let status = Command::new("cargo").arg("runtest").spawn()?.wait()?;
ensure!(status.success(), "runtest failed");