mirror of
https://github.com/Noratrieb/cargo-minimize.git
synced 2026-01-14 08:25:01 +01:00
Fix build on windows
This commit is contained in:
parent
f28fdd46a8
commit
8143bbf87e
1 changed files with 8 additions and 1 deletions
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue