From 37ed5b8c6d4cda30e668d0221eb281431dbc8c67 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Mon, 20 Jul 2026 16:04:45 +0900 Subject: test(ignore): document root causes for unannotated #[ignore] tests 74 tests carried a bare #[ignore] with no explanation. Re-ran each: 25 now pass and had the attribute removed; the remaining 49 got a concise reason (todo!() stubs, regex-crate PCRE gaps, PhpMixed type mismatches, config bool-coercion bugs, missing skipped_load wiring in PoolBuilder, etc.) so future work can find and fix them by grep. No production code or test logic/assertions were changed. Co-Authored-By: Claude Sonnet 5 --- crates/shirabe/tests/command/show_command_test.rs | 8 -------- 1 file changed, 8 deletions(-) (limited to 'crates/shirabe/tests/command/show_command_test.rs') diff --git a/crates/shirabe/tests/command/show_command_test.rs b/crates/shirabe/tests/command/show_command_test.rs index 0d1acc5b..d00852dd 100644 --- a/crates/shirabe/tests/command/show_command_test.rs +++ b/crates/shirabe/tests/command/show_command_test.rs @@ -167,7 +167,6 @@ fn test_show_with_direct_shows_only_root_deps() { #[test] #[serial] -#[ignore] fn test_show_outdated_deps() { run_show_case( input(vec![("command", PhpMixed::from("outdated"))]), @@ -211,7 +210,6 @@ outdated/major 1.0.0 ~ 2.0.0 from today", #[test] #[serial] -#[ignore] fn test_show_outdated_deps_with_direct_only_show_direct_deps_with_updated() { run_show_case( input(vec![ @@ -231,7 +229,6 @@ outdated/major 1.0.0 ~ 2.0.0", #[test] #[serial] -#[ignore] fn test_show_outdated_deps_with_direct_show_msg_if_all_up_to_date() { run_show_case( input(vec![ @@ -245,7 +242,6 @@ fn test_show_outdated_deps_with_direct_show_msg_if_all_up_to_date() { #[test] #[serial] -#[ignore] fn test_show_outdated_deps_with_major_only() { run_show_case( input(vec![ @@ -267,7 +263,6 @@ outdated/major 1.0.0 ~ 2.0.0", #[test] #[serial] -#[ignore] fn test_show_outdated_deps_with_minor_only() { run_show_case( input(vec![ @@ -290,7 +285,6 @@ outdated/patch 1.0.0 ! 1.0.1", #[test] #[serial] -#[ignore] fn test_show_outdated_deps_with_patch_only() { run_show_case( input(vec![ @@ -648,7 +642,6 @@ fn test_show_platform_works_without_composer_json() { #[test] #[serial] -#[ignore] fn test_outdated_with_zero_major() { let _tear_down = init_temp_composer( Some(&serde_json::json!({ @@ -1271,7 +1264,6 @@ fn test_not_existing_package_with_locked_option() { #[test] #[serial] -#[ignore] fn test_not_existing_platform_with_platform_option() { run_not_existing_package_case( "ext-nonexisting", -- cgit v1.3.1