From cd735c9948d4dbf8c19b28717a9009ac701fdaf0 Mon Sep 17 00:00:00 2001 From: Mykhailo Chalyi Date: Sun, 15 Mar 2026 01:25:37 +0000 Subject: [PATCH] test: un-ignore exec_azure_query_capacity, now passing The pipefail bug that caused this test to fail has been fixed. The test now passes reliably. exec_vercel_deploy remains ignored (still fails with exit code 2 due to nested function/trap interaction). --- crates/bashkit/tests/skills_tests.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/crates/bashkit/tests/skills_tests.rs b/crates/bashkit/tests/skills_tests.rs index 6e0c9604..7426f711 100644 --- a/crates/bashkit/tests/skills_tests.rs +++ b/crates/bashkit/tests/skills_tests.rs @@ -319,12 +319,7 @@ async fn exec_azure_generate_url() { /// azure query_capacity.sh — tests: set -euo pipefail, ${1:?}, ${2:-}, /// if/elif, variable expansion, printf, brace expansion {1..60}, for loop -/// -/// BUG: Exits with code 1 under set -euo pipefail. A command in the -/// pipeline fails (likely jq or az stub output not matching expected -/// format), causing pipefail to abort. #[tokio::test] -#[ignore = "pipefail triggers on az/jq stub output mismatch"] async fn exec_azure_query_capacity() { let script = read_fixture("azure_query_capacity.sh"); let mut bash = bash_with_stubs();