From cf2d4676c940ef0bcbfbb832b2ea154d655d36e1 Mon Sep 17 00:00:00 2001 From: Michael-F-Bryan Date: Thu, 13 Apr 2023 20:47:40 +0800 Subject: [PATCH] Removed the #[ignore] from one test because there are multiple flaky python tests (#3717) --- tests/integration/cli/tests/run_unstable.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/integration/cli/tests/run_unstable.rs b/tests/integration/cli/tests/run_unstable.rs index f6dc00b3a84..a1da778bc23 100644 --- a/tests/integration/cli/tests/run_unstable.rs +++ b/tests/integration/cli/tests/run_unstable.rs @@ -61,14 +61,11 @@ mod webc_on_disk { assert.success().stdout(contains("Hello, World!")); } - // FIXME: disabled due to failing test - must be reenabled - // See https://github.com/wasmerio/wasmer/issues/3717 #[test] #[cfg_attr( all(target_env = "musl", target_os = "linux"), ignore = "wasmer run-unstable segfaults on musl" )] - #[ignore] fn wasi_runner_with_mounted_directories_and_webc_volumes() { let temp = TempDir::new().unwrap(); std::fs::write(temp.path().join("main.py"), "print('Hello, World!')").unwrap();