From d0a2b5e8e11cc51d552b3d42f2c07be350922f06 Mon Sep 17 00:00:00 2001 From: Anton-4 <17049058+Anton-4@users.noreply.github.com> Date: Tue, 19 Sep 2023 18:48:10 +0200 Subject: [PATCH 1/2] enable fixed windows tests Signed-off-by: Anton-4 <17049058+Anton-4@users.noreply.github.com> --- crates/cli/tests/cli_run.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/crates/cli/tests/cli_run.rs b/crates/cli/tests/cli_run.rs index a1fb9c49f04..af98d80307a 100644 --- a/crates/cli/tests/cli_run.rs +++ b/crates/cli/tests/cli_run.rs @@ -479,7 +479,6 @@ mod cli_run { #[test] #[serial(cli_platform)] - #[cfg_attr(windows, ignore)] fn hello_world_no_url() { test_roc_app_slim( "examples", @@ -561,7 +560,6 @@ mod cli_run { } #[test] - #[cfg_attr(windows, ignore)] fn expects_dev_and_test() { // these are in the same test function so we don't have to worry about race conditions // on the building of the platform @@ -647,7 +645,6 @@ mod cli_run { } #[test] - #[cfg_attr(windows, ignore)] fn fibonacci() { test_roc_app_slim( "crates/cli_testing_examples/algorithms", @@ -695,7 +692,6 @@ mod cli_run { } #[test] - #[cfg_attr(windows, ignore)] fn quicksort() { test_roc_app_slim( "crates/cli_testing_examples/algorithms", @@ -1318,7 +1314,6 @@ mod cli_run { #[test] #[serial(multi_dep_str)] - #[cfg_attr(windows, ignore)] fn run_multi_dep_str_optimized() { check_output_with_stdin( &fixture_file("multi-dep-str", "Main.roc"), @@ -1352,7 +1347,6 @@ mod cli_run { #[test] #[serial(multi_dep_thunk)] - #[cfg_attr(windows, ignore)] fn run_multi_dep_thunk_optimized() { check_output_with_stdin( &fixture_file("multi-dep-thunk", "Main.roc"), From 63d3dfc656fdb674040da9c222332dee9bfab697 Mon Sep 17 00:00:00 2001 From: Anton-4 <17049058+Anton-4@users.noreply.github.com> Date: Tue, 19 Sep 2023 19:43:24 +0200 Subject: [PATCH 2/2] disable some tests These work locally but fail on CI Signed-off-by: Anton-4 <17049058+Anton-4@users.noreply.github.com> --- crates/cli/tests/cli_run.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/crates/cli/tests/cli_run.rs b/crates/cli/tests/cli_run.rs index af98d80307a..4690e15e395 100644 --- a/crates/cli/tests/cli_run.rs +++ b/crates/cli/tests/cli_run.rs @@ -479,6 +479,7 @@ mod cli_run { #[test] #[serial(cli_platform)] + #[cfg_attr(windows, ignore)] fn hello_world_no_url() { test_roc_app_slim( "examples", @@ -692,6 +693,7 @@ mod cli_run { } #[test] + #[cfg_attr(windows, ignore)] fn quicksort() { test_roc_app_slim( "crates/cli_testing_examples/algorithms", @@ -1314,6 +1316,7 @@ mod cli_run { #[test] #[serial(multi_dep_str)] + #[cfg_attr(windows, ignore)] fn run_multi_dep_str_optimized() { check_output_with_stdin( &fixture_file("multi-dep-str", "Main.roc"),