File size: 175,057 Bytes
d61821a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 | {
"audits": [
{
"commit": "757294c01143360b466a70daf3fbef869fc3a41b",
"elapsed_seconds": 1.0647567920386791,
"parent": "a60e974e6a3cf10902eb60bbc280bc506fdc2f2f",
"reason": "selected public tests fail at base",
"source_changed_lines": 202,
"source_paths": [
"internal/commands/securefile/create/create.go",
"internal/commands/securefile/download/download.go",
"internal/commands/securefile/helpers/helpers.go",
"internal/commands/securefile/remove/remove.go",
"internal/commands/securefile/securefile.go",
"internal/commands/securefile/update/update.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [
"internal/commands/securefile/helpers/helpers_test.go",
"internal/commands/securefile/update/update_test.go"
],
"title": "Ability to Update existing files",
"validation": {
"commands": [
"go test ./internal/commands/securefile/helpers -count=1",
"go test ./internal/commands/securefile/update -count=1"
],
"elapsed_seconds": 1.0283423338551074,
"original": [
{
"command": "go test ./internal/commands/securefile/helpers -count=1",
"elapsed_seconds": 0.8638054588809609,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/securefile/helpers\t0.343s\n",
"timed_out": false
},
{
"command": "go test ./internal/commands/securefile/update -count=1",
"elapsed_seconds": 0.00833712494932115,
"returncode": 1,
"stderr": "# ./internal/commands/securefile/update\nstat /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-gewdezpp/tree/internal/commands/securefile/update: directory not found\n",
"stdout": "FAIL\t./internal/commands/securefile/update [setup failed]\nFAIL\n",
"timed_out": false
}
],
"reason": "selected public tests fail at base",
"valid": false
}
},
{
"commit": "a60e974e6a3cf10902eb60bbc280bc506fdc2f2f",
"elapsed_seconds": 0.03222566610202193,
"parent": "0e8b9dde6d0c55cf9aacf333ca7aa8d9af14498f",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "docs: note gen-docs pruning of deprecated command pages",
"validation": null
},
{
"commit": "0e8b9dde6d0c55cf9aacf333ca7aa8d9af14498f",
"elapsed_seconds": 0.02641758299432695,
"parent": "daff6a14b0ba7c5449e41b3b4e7e070a15799db2",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "docs: add dependency management and vulnerability reporting sections",
"validation": null
},
{
"commit": "daff6a14b0ba7c5449e41b3b4e7e070a15799db2",
"elapsed_seconds": 4.739475167123601,
"parent": "a5be59f825000f173880b4e49e47ea2bed646531",
"reason": null,
"source_changed_lines": 79,
"source_paths": [
"cmd/gen-docs/docs.go",
"internal/commands/mr/for/mr_for.go"
],
"status": "selected",
"task_id": "TASK_S2_R002_001",
"test_paths": [
"cmd/gen-docs/docs_test.go"
],
"title": "prune and remove deprecated command pages",
"validation": {
"commands": [
"go test ./cmd/gen-docs -count=1"
],
"elapsed_seconds": 4.704285375075415,
"gold": [
{
"command": "go test ./cmd/gen-docs -count=1",
"elapsed_seconds": 1.2477659587748349,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/cmd/gen-docs\t0.419s\n",
"timed_out": false
}
],
"hidden": [
{
"command": "go test ./cmd/gen-docs -count=1",
"elapsed_seconds": 0.3735475828871131,
"returncode": 1,
"stderr": "# gitlab.com/gitlab-org/cli/cmd/gen-docs [gitlab.com/gitlab-org/cli/cmd/gen-docs.test]\ncmd/gen-docs/docs_test.go:21:54: undefined: generatedMarker\n",
"stdout": "FAIL\tgitlab.com/gitlab-org/cli/cmd/gen-docs [build failed]\nFAIL\n",
"timed_out": false
}
],
"hidden_apply": {
"elapsed_seconds": 0.010258292080834508,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"original": [
{
"command": "go test ./cmd/gen-docs -count=1",
"elapsed_seconds": 2.9076594579964876,
"returncode": 0,
"stderr": "",
"stdout": "? \tgitlab.com/gitlab-org/cli/cmd/gen-docs\t[no test files]\n",
"timed_out": false
}
],
"reason": null,
"source_apply": {
"elapsed_seconds": 0.011070332955569029,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"valid": true
}
},
{
"commit": "a5be59f825000f173880b4e49e47ea2bed646531",
"elapsed_seconds": 0.03527783299796283,
"parent": "66315151980907d57505ee6b4b5f9c66f51c04b8",
"reason": "no eligible unit-test file",
"source_changed_lines": 3,
"source_paths": [
"internal/commands/config/config.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "docs: Document XDG Base Directory support for glab config",
"validation": null
},
{
"commit": "66315151980907d57505ee6b4b5f9c66f51c04b8",
"elapsed_seconds": 0.19844037480652332,
"parent": "1c6eac729311fa5ecef7bdbd0f3233aa4cd3dbe6",
"reason": "selected public tests fail at base",
"source_changed_lines": 269,
"source_paths": [
"internal/commands/variable/import/import.go",
"internal/commands/variable/variable.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [
"internal/commands/variable/import/import_test.go"
],
"title": "add variable import command",
"validation": {
"commands": [
"go test ./internal/commands/variable/import -count=1"
],
"elapsed_seconds": 0.16421654191799462,
"original": [
{
"command": "go test ./internal/commands/variable/import -count=1",
"elapsed_seconds": 0.0066225421614944935,
"returncode": 1,
"stderr": "# ./internal/commands/variable/import\nstat /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-gm4carhr/tree/internal/commands/variable/import: directory not found\n",
"stdout": "FAIL\t./internal/commands/variable/import [setup failed]\nFAIL\n",
"timed_out": false
}
],
"reason": "selected public tests fail at base",
"valid": false
}
},
{
"commit": "1c6eac729311fa5ecef7bdbd0f3233aa4cd3dbe6",
"elapsed_seconds": 0.038480292074382305,
"parent": "98fda4c401dcf3a0ef5e1edd02c883b4848557e0",
"reason": "production changed lines exceed 400",
"source_changed_lines": 444,
"source_paths": [
"internal/dependencyfirewall/config/config.go",
"internal/dependencyfirewall/config/registry.go",
"internal/dependencyfirewall/fsx/fsx.go",
"internal/dependencyfirewall/fsx/write_unix.go",
"internal/dependencyfirewall/fsx/write_windows.go",
"internal/dependencyfirewall/npmrc/npmrc.go",
"internal/dependencyfirewall/verdict/verdict.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [
"internal/dependencyfirewall/config/config_test.go",
"internal/dependencyfirewall/config/registry_test.go",
"internal/dependencyfirewall/fsx/fsx_test.go",
"internal/dependencyfirewall/npmrc/npmrc_test.go",
"internal/dependencyfirewall/verdict/verdict_test.go"
],
"title": "add dependency firewall engine foundations",
"validation": null
},
{
"commit": "98fda4c401dcf3a0ef5e1edd02c883b4848557e0",
"elapsed_seconds": 0.025857832981273532,
"parent": "990b37b3773a089d5af590c88ab69f627bfc4cf3",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module golang.org/x/text to v0.40.0",
"validation": null
},
{
"commit": "990b37b3773a089d5af590c88ab69f627bfc4cf3",
"elapsed_seconds": 0.028580167097970843,
"parent": "75db4427faf06103d7c2eb118128ddca788b7284",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module github.com/gdamore/tcell/v2 to v2.13.10",
"validation": null
},
{
"commit": "75db4427faf06103d7c2eb118128ddca788b7284",
"elapsed_seconds": 0.025012291967868805,
"parent": "e6146e76bb175b90bf660f1234d294ae8979d081",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update dependency @commitlint/cli to ^21.2.1",
"validation": null
},
{
"commit": "e6146e76bb175b90bf660f1234d294ae8979d081",
"elapsed_seconds": 2.1831908759195358,
"parent": "0d984da7b56af3e8e882a3234be0bf44686e6bfc",
"reason": null,
"source_changed_lines": 13,
"source_paths": [
"internal/api/client.go"
],
"status": "selected",
"task_id": "TASK_S2_R002_002",
"test_paths": [
"internal/api/client_headers_test.go"
],
"title": "skip auth header for unauthenticated source",
"validation": {
"commands": [
"go test ./internal/api -count=1"
],
"elapsed_seconds": 2.149531208910048,
"gold": [
{
"command": "go test ./internal/api -count=1",
"elapsed_seconds": 0.6352852089330554,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/api\t0.280s\n",
"timed_out": false
}
],
"hidden": [
{
"command": "go test ./internal/api -count=1",
"elapsed_seconds": 0.6414129170589149,
"returncode": 1,
"stderr": "",
"stdout": "--- FAIL: TestNewHTTPRequest_UnauthenticatedAuthSource (0.00s)\n client_headers_test.go:152: \n \tError Trace:\t/private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-vzegx86h/tree/internal/api/client_headers_test.go:152\n \tError: \tReceived unexpected error:\n \t \tunauthenticated\n \tTest: \tTestNewHTTPRequest_UnauthenticatedAuthSource\nFAIL\nFAIL\tgitlab.com/gitlab-org/cli/internal/api\t0.286s\nFAIL\n",
"timed_out": false
}
],
"hidden_apply": {
"elapsed_seconds": 0.010426291031762958,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"original": [
{
"command": "go test ./internal/api -count=1",
"elapsed_seconds": 0.6958261670079082,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/api\t0.257s\n",
"timed_out": false
}
],
"reason": null,
"source_apply": {
"elapsed_seconds": 0.012427249923348427,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"valid": true
}
},
{
"commit": "0d984da7b56af3e8e882a3234be0bf44686e6bfc",
"elapsed_seconds": 0.026917167007923126,
"parent": "175408036820b651cd7ff32b88e8138bf32ecd45",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module gitlab.com/gitlab-org/api/client-go/v2 to v2.49.0",
"validation": null
},
{
"commit": "175408036820b651cd7ff32b88e8138bf32ecd45",
"elapsed_seconds": 0.02530979085713625,
"parent": "af58a4eaffab05222d76160e6bc3e08a6c41dd0d",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module golang.org/x/term to v0.45.0",
"validation": null
},
{
"commit": "af58a4eaffab05222d76160e6bc3e08a6c41dd0d",
"elapsed_seconds": 0.025202709017321467,
"parent": "0f3daa43a7c6a0d5f8f4921682fa1316cf7335c9",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): bump go to v1.26.5",
"validation": null
},
{
"commit": "0f3daa43a7c6a0d5f8f4921682fa1316cf7335c9",
"elapsed_seconds": 0.03378824982792139,
"parent": "b624f3a637fb0245ab882f7ca0eeea55c198dd9b",
"reason": "no eligible unit-test file",
"source_changed_lines": 18,
"source_paths": [
"internal/commands/release/create/create.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "docs(release): document CI/CD authentication for release create",
"validation": null
},
{
"commit": "b624f3a637fb0245ab882f7ca0eeea55c198dd9b",
"elapsed_seconds": 0.02521300013177097,
"parent": "5de20850a43cbcacf3768f846eee3dae06731ef3",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore: run docs Hugo test with latest docs Hugo container image",
"validation": null
},
{
"commit": "5de20850a43cbcacf3768f846eee3dae06731ef3",
"elapsed_seconds": 0.02578220795840025,
"parent": "ec9f40cd4f1327c6719c443a09a84cf0b881ac36",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [
"internal/commands/mr/mrutils/discussion_print_test.go"
],
"title": "test(mrutils): parallelize noteTimeAgo test",
"validation": null
},
{
"commit": "ec9f40cd4f1327c6719c443a09a84cf0b881ac36",
"elapsed_seconds": 0.03349162498489022,
"parent": "05d58eb1a50c1fc4d804f27fd4d5a006c921e4fd",
"reason": "no eligible unit-test file",
"source_changed_lines": 10,
"source_paths": [
"internal/commands/config/config.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "docs(config): list missing user-settable global keys in help",
"validation": null
},
{
"commit": "05d58eb1a50c1fc4d804f27fd4d5a006c921e4fd",
"elapsed_seconds": 7.860581333748996,
"parent": "71a96cf3be9940f846e5d412ccd2b18fae8968f7",
"reason": null,
"source_changed_lines": 59,
"source_paths": [
"internal/commands/auth/login/login.go"
],
"status": "selected",
"task_id": "TASK_S2_R002_003",
"test_paths": [
"internal/commands/auth/login/login_test.go"
],
"title": "preserve saved values on re-authentication",
"validation": {
"commands": [
"go test ./internal/commands/auth/login -count=1"
],
"elapsed_seconds": 7.826434458838776,
"gold": [
{
"command": "go test ./internal/commands/auth/login -count=1",
"elapsed_seconds": 2.5291800000704825,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/auth/login\t2.096s\n",
"timed_out": false
}
],
"hidden": [
{
"command": "go test ./internal/commands/auth/login -count=1",
"elapsed_seconds": 0.18410812504589558,
"returncode": 1,
"stderr": "# gitlab.com/gitlab-org/cli/internal/commands/auth/login [gitlab.com/gitlab-org/cli/internal/commands/auth/login.test]\ninternal/commands/auth/login/login_test.go:459:10: undefined: initialAPIHostname\ninternal/commands/auth/login/login_test.go:468:10: undefined: initialAPIHostname\ninternal/commands/auth/login/login_test.go:476:10: undefined: initialAPIHostname\ninternal/commands/auth/login/login_test.go:487:10: undefined: initialSSHHostname\ninternal/commands/auth/login/login_test.go:498:10: undefined: initialSSHHostname\ninternal/commands/auth/login/login_test.go:507:10: undefined: initialSSHHostname\ninternal/commands/auth/login/login_test.go:518:10: undefined: initialContainerRegistryDomains\ninternal/commands/auth/login/login_test.go:526:10: undefined: initialContainerRegistryDomains\n",
"stdout": "FAIL\tgitlab.com/gitlab-org/cli/internal/commands/auth/login [build failed]\nFAIL\n",
"timed_out": false
}
],
"hidden_apply": {
"elapsed_seconds": 0.010852667037397623,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"original": [
{
"command": "go test ./internal/commands/auth/login -count=1",
"elapsed_seconds": 4.9369800828862935,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/auth/login\t4.159s\n",
"timed_out": false
}
],
"reason": null,
"source_apply": {
"elapsed_seconds": 0.010441459016874433,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"valid": true
}
},
{
"commit": "71a96cf3be9940f846e5d412ccd2b18fae8968f7",
"elapsed_seconds": 14.012811915948987,
"parent": "5c23d008b05152107f65b4dbf401fefd7e7c5676",
"reason": null,
"source_changed_lines": 2,
"source_paths": [
"internal/git/git.go"
],
"status": "selected",
"task_id": "TASK_S2_R002_004",
"test_paths": [
"internal/git/git_test.go"
],
"title": "strip newline from git describe output",
"validation": {
"commands": [
"go test ./internal/git -count=1"
],
"elapsed_seconds": 13.974329249933362,
"gold": [
{
"command": "go test ./internal/git -count=1",
"elapsed_seconds": 4.573278290918097,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/git\t4.232s\n",
"timed_out": false
}
],
"hidden": [
{
"command": "go test ./internal/git -count=1",
"elapsed_seconds": 4.570146208163351,
"returncode": 1,
"stderr": "",
"stdout": "--- FAIL: TestDescribeByTags (0.15s)\n --- FAIL: TestDescribeByTags/commit_is_tag (0.08s)\n git_test.go:384: \n \tError Trace:\t/private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-fjsuhoyf/tree/internal/git/git_test.go:384\n \tError: \tNot equal: \n \t \texpected: \"1.0.0\"\n \t \tactual : \"1.0.0\\n\"\n \t \t\n \t \tDiff:\n \t \t--- Expected\n \t \t+++ Actual\n \t \t@@ -1 +1,2 @@\n \t \t 1.0.0\n \t \t+\n \tTest: \tTestDescribeByTags/commit_is_tag\n \tMessages: \tunexpected version value for case commit is tag\n --- FAIL: TestDescribeByTags/commit_is_not_tag (0.07s)\n git_test.go:384: \n \tError Trace:\t/private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-fjsuhoyf/tree/internal/git/git_test.go:384\n \tError: \tNot equal: \n \t \texpected: \"1.0.0-1-g4aa1b8\"\n \t \tactual : \"1.0.0-1-g4aa1b8\\n\"\n \t \t\n \t \tDiff:\n \t \t--- Expected\n \t \t+++ Actual\n \t \t@@ -1 +1,2 @@\n \t \t 1.0.0-1-g4aa1b8\n \t \t+\n \tTest: \tTestDescribeByTags/commit_is_not_tag\n \tMessages: \tunexpected version value for case commit is not tag\nFAIL\nFAIL\tgitlab.com/gitlab-org/cli/internal/git\t4.226s\nFAIL\n",
"timed_out": false
}
],
"hidden_apply": {
"elapsed_seconds": 0.008839749963954091,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"original": [
{
"command": "go test ./internal/git -count=1",
"elapsed_seconds": 4.659236290957779,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/git\t4.240s\n",
"timed_out": false
}
],
"reason": null,
"source_apply": {
"elapsed_seconds": 0.009028458036482334,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"valid": true
}
},
{
"commit": "5c23d008b05152107f65b4dbf401fefd7e7c5676",
"elapsed_seconds": 8.027229081839323,
"parent": "b0002945668fe718fcb6ab7e3ada5d2fd6dfaf08",
"reason": null,
"source_changed_lines": 8,
"source_paths": [
"internal/commands/issuable/view/issuable_view.go"
],
"status": "selected",
"task_id": "TASK_S2_R002_005",
"test_paths": [
"internal/commands/issuable/view/issuable_view_test.go"
],
"title": "avoid panic when viewing a closed issue with no closer",
"validation": {
"commands": [
"go test ./internal/commands/issuable/view -count=1"
],
"elapsed_seconds": 7.988420665962622,
"gold": [
{
"command": "go test ./internal/commands/issuable/view -count=1",
"elapsed_seconds": 2.142303042113781,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/issuable/view\t1.692s\n",
"timed_out": false
}
],
"hidden": [
{
"command": "go test ./internal/commands/issuable/view -count=1",
"elapsed_seconds": 1.1081779159139842,
"returncode": 1,
"stderr": "",
"stdout": "--- FAIL: Test_printTTYIssuePreview_closed (0.00s)\n --- FAIL: Test_printTTYIssuePreview_closed/closed_issue_with_nil_closed_by_does_not_panic (0.00s)\n issuable_view_test.go:548: \n \tError Trace:\t/private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-kpxh_hj5/tree/internal/commands/issuable/view/issuable_view_test.go:548\n \tError: \tfunc (assert.PanicTestFunc)(0x104c46000) should not panic\n \t \t\tPanic value:\truntime error: invalid memory address or nil pointer dereference\n \t \t\tPanic stack:\tgoroutine 83 [running]:\n \t \truntime/debug.Stack()\n \t \t\t/opt/homebrew/Cellar/go/1.26.5/libexec/src/runtime/debug/stack.go:26 +0x64\n \t \tgithub.com/stretchr/testify/assert.didPanic.func1()\n \t \t\t/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/agent-harness-go-runtime/modules/github.com/stretchr/testify@v1.11.1/assert/assertions.go:1286 +0x64\n \t \tpanic({0x105666c20?, 0x105912310?})\n \t \t\t/opt/homebrew/Cellar/go/1.26.5/libexec/src/runtime/panic.go:860 +0x12c\n \t \tgitlab.com/gitlab-org/cli/internal/commands/issuable/view.printTTYIssuePreview(0x331e3b85ae80)\n \t \t\t/private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-kpxh_hj5/tree/internal/commands/issuable/view/issuable_view.go:227 +0x660\n \t \tgitlab.com/gitlab-org/cli/internal/commands/issuable/view.Test_printTTYIssuePreview_closed.func1.1()\n \t \t\t/private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-kpxh_hj5/tree/internal/commands/issuable/view/issuable_view_test.go:548 +0x20\n \t \tgithub.com/stretchr/testify/assert.didPanic(0x105915220?)\n \t \t\t/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/agent-harness-go-runtime/modules/github.com/stretchr/testify@v1.11.1/assert/assertions.go:1291 +0x68\n \t \tgithub.com/stretchr/testify/assert.NotPanics({0x1057f2640, 0x331e3ba6f448}, 0x331e3bb85a10, {0x0, 0x0, 0x0})\n \t \t\t/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/agent-harness-go-runtime/modules/github.com/stretchr/testify@v1.11.1/assert/assertions.go:1362 +0x70\n \t \tgithub.com/stretchr/testify/require.NotPanics({0x1057f5ac8, 0x331e3ba6f448}, 0x331e3bb85a10, {0x0, 0x0, 0x0})\n \t \t\t/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/agent-harness-go-runtime/modules/github.com/stretchr/testify@v1.11.1/require/require.go:1711 +0xa4\n \t \tgitlab.com/gitlab-org/cli/internal/commands/issuable/view.Test_printTTYIssuePreview_closed.func1(0x331e3ba6f448)\n \t \t\t/private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-kpxh_hj5/tree/internal/commands/issuable/view/issuable_view_test.go:548 +0x110\n \t \ttesting.tRunner(0x331e3ba6f448, 0x331e3ba6c730)\n \t \t\t/opt/homebrew/Cellar/go/1.26.5/libexec/src/testing/testing.go:2036 +0xc4\n \t \tcreated by testing.(*T).Run in goroutine 82\n \t \t\t/opt/homebrew/Cellar/go/1.26.5/libexec/src/testing/testing.go:2101 +0x3a8\n \tTest: \tTest_printTTYIssuePreview_closed/closed_issue_with_nil_closed_by_does_not_panic\n --- FAIL: Test_printTTYIssuePreview_closed/closed_issue_with_closed_by_but_no_closed_at (0.00s)\n issuable_view_test.go:552: \n \tError Trace:\t/private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-kpxh_hj5/tree/internal/commands/issuable/view/issuable_view_test.go:552\n \tError: \t\"closed \u2022 opened by alice about 11 years ago\\nClosed issue #0\\n\\n0 upvotes \u2022 0 downvotes \u2022 0 comments\\nClosed by: bob about 11 years ago\\n\\nView this issue on GitLab: \\n\" does not contain \"Closed by: bob\\n\"\n \tTest: \tTest_printTTYIssuePreview_closed/closed_issue_with_closed_by_but_no_closed_at\nFAIL\nFAIL\tgitlab.com/gitlab-org/cli/internal/commands/issuable/view\t0.662s\nFAIL\n",
"timed_out": false
}
],
"hidden_apply": {
"elapsed_seconds": 0.010852874955162406,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"original": [
{
"command": "go test ./internal/commands/issuable/view -count=1",
"elapsed_seconds": 4.555571541888639,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/issuable/view\t3.767s\n",
"timed_out": false
}
],
"reason": null,
"source_apply": {
"elapsed_seconds": 0.011311874957755208,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"valid": true
}
},
{
"commit": "b0002945668fe718fcb6ab7e3ada5d2fd6dfaf08",
"elapsed_seconds": 0.02954837493598461,
"parent": "53620a5f6373854969bcb1325f872e4fa3d810a3",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module charm.land/bubbletea/v2 to v2.0.8",
"validation": null
},
{
"commit": "53620a5f6373854969bcb1325f872e4fa3d810a3",
"elapsed_seconds": 1.2762248336803168,
"parent": "51e3ab15ca2138bb6a1d792e54424048dd9319b5",
"reason": "selected public tests fail at base",
"source_changed_lines": 116,
"source_paths": [
"internal/commands/securefile/download/download.go",
"internal/commands/securefile/helpers/helpers.go",
"internal/commands/securefile/remove/remove.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [
"internal/commands/securefile/helpers/helpers_test.go",
"internal/commands/securefile/remove/remove_test.go"
],
"title": "remove by name",
"validation": {
"commands": [
"go test ./internal/commands/securefile/helpers -count=1",
"go test ./internal/commands/securefile/remove -count=1"
],
"elapsed_seconds": 1.240690458798781,
"original": [
{
"command": "go test ./internal/commands/securefile/helpers -count=1",
"elapsed_seconds": 0.006138833938166499,
"returncode": 1,
"stderr": "# ./internal/commands/securefile/helpers\nstat /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-i6itr5x2/tree/internal/commands/securefile/helpers: directory not found\n",
"stdout": "FAIL\t./internal/commands/securefile/helpers [setup failed]\nFAIL\n",
"timed_out": false
},
{
"command": "go test ./internal/commands/securefile/remove -count=1",
"elapsed_seconds": 1.0789677500724792,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/securefile/remove\t0.289s\n",
"timed_out": false
}
],
"reason": "selected public tests fail at base",
"valid": false
}
},
{
"commit": "51e3ab15ca2138bb6a1d792e54424048dd9319b5",
"elapsed_seconds": 0.028406708035618067,
"parent": "5e3c01d6ced45eea4b49cdceaf4d258a706aa55f",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module gitlab.com/gitlab-org/api/client-go/v2 to v2.47.0",
"validation": null
},
{
"commit": "5e3c01d6ced45eea4b49cdceaf4d258a706aa55f",
"elapsed_seconds": 0.038178041111677885,
"parent": "93d5d8eb2a91c216b81dd819e8912d874d20c665",
"reason": "no eligible unit-test file",
"source_changed_lines": 33,
"source_paths": [
"internal/commands/security/config/config.go",
"internal/commands/security/config/disable/disable.go",
"internal/commands/security/config/enable/enable.go",
"internal/commands/security/config/status/status.go",
"internal/commands/security/security.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "docs(security): mark experimental subcommands and clarify synopsis",
"validation": null
},
{
"commit": "93d5d8eb2a91c216b81dd819e8912d874d20c665",
"elapsed_seconds": 3.0139397911261767,
"parent": "41455d61077fa309d2ded62e12e8c1032fbebf3a",
"reason": null,
"source_changed_lines": 16,
"source_paths": [
"internal/commands/ci/status/status.go"
],
"status": "selected",
"task_id": "TASK_S2_R002_006",
"test_paths": [
"internal/commands/ci/status/status_test.go"
],
"title": "Add Wait Flag for CI Status Subcommand",
"validation": {
"commands": [
"go test ./internal/commands/ci/status -count=1"
],
"elapsed_seconds": 2.973088416038081,
"gold": [
{
"command": "go test ./internal/commands/ci/status -count=1",
"elapsed_seconds": 0.812987457960844,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/ci/status\t0.294s\n",
"timed_out": false
}
],
"hidden": [
{
"command": "go test ./internal/commands/ci/status -count=1",
"elapsed_seconds": 0.8170351251028478,
"returncode": 1,
"stderr": "",
"stdout": "(success) \u2022 not started\ttest\t\ttest\n\n\nSHA: \nPipeline state: success\n\n(success) \u2022 not started\ttest\t\ttest\n\n\nSHA: \nPipeline state: success\n\nError: unknown flag: --wait\nUsage:\n status [flags]\n\nAliases:\n status, stats\n\nExamples:\n# View the pipeline status in real time\nglab ci status --live\n\n# A more compact view\nglab ci status --compact\n\n# Get the pipeline for the main branch\nglab ci status --branch=main\n\n# Get the pipeline for the current branch\nglab ci status\n\nFlags:\n -b, --branch string Check pipeline status for a branch. Defaults to the current branch.\n -c, --compact Show status in compact format.\n -h, --help help for status\n --jq string Filter JSON output with a jq expression.\n -l, --live Show status in real time until the pipeline ends.\n -F, --output string Format output as: text, json. Note: JSON output is not compatible with --live or --compact flags. (default \"text\")\n\n--- FAIL: TestCiStatusCommand_Wait_NoPrompt (0.00s)\n status_test.go:301: \n \tError Trace:\t/private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-oh4a09a8/tree/internal/commands/ci/status/status_test.go:301\n \tError: \tReceived unexpected error:\n \t \tunknown flag: --wait\n \tTest: \tTestCiStatusCommand_Wait_NoPrompt\n controller.go:97: missing call(s) to *testing.MockPipelinesServiceInterface.GetLatestPipeline(is equal to OWNER/REPO (string), is equal to &{0x2166cc9e7eb0} (*gitlab.GetLatestPipelineOptions), is anything) /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-oh4a09a8/tree/internal/commands/ci/status/status_test.go:279\n controller.go:97: missing call(s) to *testing.MockJobsServiceInterface.ListPipelineJobs(is equal to OWNER/REPO (string), is equal to 1 (int64), is anything) /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-oh4a09a8/tree/internal/commands/ci/status/status_test.go:283\n controller.go:97: missing call(s) to *testing.MockJobsServiceInterface.ListPipelineJobs(is equal to OWNER/REPO (string), is equal to 1 (int64), is anything, is anything) /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-oh4a09a8/tree/internal/commands/ci/status/status_test.go:287\n controller.go:97: aborting test due to missing call(s)\n(canceled) \u2022 not started\ttest\t\ttest\n\n\nSHA: \nPipeline state: canceled\n\n(canceled) \u2022 not started\ttest\t\ttest\n\n\nSHA: \nPipeline state: canceled\n\nError: unknown flag: --wait\nUsage:\n status [flags]\n\nAliases:\n status, stats\n\nExamples:\n# View the pipeline status in real time\nglab ci status --live\n\n# A more compact view\nglab ci status --compact\n\n# Get the pipeline for the main branch\nglab ci status --branch=main\n\n# Get the pipeline for the current branch\nglab ci status\n\nFlags:\n -b, --branch string Check pipeline status for a branch. Defaults to the current branch.\n -c, --compact Show status in compact format.\n -h, --help help for status\n --jq string Filter JSON output with a jq expression.\n -l, --live Show status in real time until the pipeline ends.\n -F, --output string Format output as: text, json. Note: JSON output is not compatible with --live or --compact flags. (default \"text\")\n\n--- FAIL: TestCiStatusCommand_JSONWithWait_Error (0.00s)\n status_test.go:269: \n \tError Trace:\t/private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-oh4a09a8/tree/internal/commands/ci/status/status_test.go:269\n \tError: \tError message not equal:\n \t \texpected: \"--output json cannot be used with --live, --wait, or --compact flags\"\n \t \tactual : \"unknown flag: --wait\"\n \tTest: \tTestCiStatusCommand_JSONWithWait_Error\nFAIL\nFAIL\tgitlab.com/gitlab-org/cli/internal/commands/ci/status\t0.312s\nFAIL\n",
"timed_out": false
}
],
"hidden_apply": {
"elapsed_seconds": 0.011396749876439571,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"original": [
{
"command": "go test ./internal/commands/ci/status -count=1",
"elapsed_seconds": 1.1623616248834878,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/ci/status\t0.308s\n",
"timed_out": false
}
],
"reason": null,
"source_apply": {
"elapsed_seconds": 0.010623249923810363,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"valid": true
}
},
{
"commit": "41455d61077fa309d2ded62e12e8c1032fbebf3a",
"elapsed_seconds": 0.044804709032177925,
"parent": "f8aa2a364b01a1052a24440585f61f633f267056",
"reason": "no eligible unit-test file",
"source_changed_lines": 1383,
"source_paths": [
"internal/commands/alias/delete/alias_delete.go",
"internal/commands/alias/list/alias_list.go",
"internal/commands/alias/set/alias_set.go",
"internal/commands/api/api.go",
"internal/commands/attestation/verify/verify.go",
"internal/commands/auth/docker/configure.go",
"internal/commands/auth/login/helper.go",
"internal/commands/auth/login/login.go",
"internal/commands/auth/logout/logout.go",
"internal/commands/auth/status/status.go",
"internal/commands/changelog/generate/changelog_generate.go",
"internal/commands/ci/cancel/job/job.go",
"internal/commands/ci/cancel/pipeline/pipeline.go",
"internal/commands/ci/ci.go",
"internal/commands/ci/ciutils/utils.go",
"internal/commands/ci/delete/delete.go",
"internal/commands/ci/get/get.go",
"internal/commands/ci/lint/lint.go",
"internal/commands/ci/list/list.go",
"internal/commands/ci/retry/retry.go",
"internal/commands/ci/run/run.go",
"internal/commands/ci/run_trig/run_trig.go",
"internal/commands/ci/status/status.go",
"internal/commands/ci/trigger/trigger.go",
"internal/commands/ci/view/view.go",
"internal/commands/cluster/agent/bootstrap/agent_bootstrap.go",
"internal/commands/cluster/agent/get_token/agent_get_token.go",
"internal/commands/cluster/agent/get_token/cache.go",
"internal/commands/cluster/agent/get_token/file_mutex.go",
"internal/commands/cluster/agent/token/list/list.go",
"internal/commands/cluster/agent/token/revoke/revoke.go",
"internal/commands/cluster/agent/token_cache/clear/clear.go",
"internal/commands/cluster/agent/token_cache/list/list.go",
"internal/commands/config/get/config_get.go",
"internal/commands/container_registry/repository/delete/delete.go",
"internal/commands/container_registry/repository/list/list.go",
"internal/commands/container_registry/repository/view/view.go",
"internal/commands/container_registry/tag/delete/delete.go",
"internal/commands/container_registry/tag/list/list.go",
"internal/commands/container_registry/tag/view/view.go",
"internal/commands/gpg-key/add/add.go",
"internal/commands/gpg-key/delete/delete.go",
"internal/commands/help/help.go",
"internal/commands/issuable/close/issuable_close.go",
"internal/commands/issuable/list/issuable_list.go",
"internal/commands/issuable/note/issuable_note_create.go",
"internal/commands/issuable/reopen/issuable_reopen.go",
"internal/commands/issuable/subscribe/issuable_subscribe.go",
"internal/commands/issuable/unsubscribe/issuable_unsubscribe.go",
"internal/commands/issuable/view/issuable_view.go",
"internal/commands/issue/board/create/issue_board_create.go",
"internal/commands/issue/create/issue_create.go",
"internal/commands/issue/delete/issue_delete.go",
"internal/commands/issue/update/issue_update.go",
"internal/commands/iteration/list/iteration_list.go",
"internal/commands/job/artifact/logic.go",
"internal/commands/label/delete/label_delete.go",
"internal/commands/label/list/label_list.go",
"internal/commands/mr/approve/mr_approve.go",
"internal/commands/mr/approvers/mr_approvers.go",
"internal/commands/mr/close/mr_close.go",
"internal/commands/mr/create/mr_create.go",
"internal/commands/mr/delete/mr_delete.go",
"internal/commands/mr/diff/diff.go",
"internal/commands/mr/for/mr_for.go",
"internal/commands/mr/issues/mr_issues.go",
"internal/commands/mr/list/mr_list.go",
"internal/commands/mr/merge/mr_merge.go",
"internal/commands/mr/mrutils/discussion_print.go",
"internal/commands/mr/mrutils/mrutils.go",
"internal/commands/mr/note/helpers.go",
"internal/commands/mr/note/mr_note.go",
"internal/commands/mr/note/mr_note_create.go",
"internal/commands/mr/note/mr_note_delete.go",
"internal/commands/mr/note/mr_note_list.go",
"internal/commands/mr/note/mr_note_resolve.go",
"internal/commands/mr/note/mr_note_update.go",
"internal/commands/mr/reopen/mr_reopen.go",
"internal/commands/mr/revoke/mr_revoke.go",
"internal/commands/mr/subscribe/mr_subscribe.go",
"internal/commands/mr/todo/mr_todo.go",
"internal/commands/mr/unsubscribe/mr_unsubscribe.go",
"internal/commands/mr/update/mr_update.go",
"internal/commands/mr/view/mr_view.go",
"internal/commands/opentofu/state/delete/delete.go",
"internal/commands/opentofu/state/list/list.go",
"internal/commands/opentofu/state/lock/lock.go",
"internal/commands/opentofu/state/unlock/unlock.go",
"internal/commands/orbit/remote/dsl/dsl.go",
"internal/commands/project/archive/repo_archive.go",
"internal/commands/project/clone/repo_clone.go",
"internal/commands/project/contributors/repo_contributors.go",
"internal/commands/project/create/project_create.go",
"internal/commands/project/delete/delete.go",
"internal/commands/project/fork/fork.go",
"internal/commands/project/list/list.go",
"internal/commands/project/members/add/add.go",
"internal/commands/project/members/remove/remove.go",
"internal/commands/project/mirror/project_mirror.go",
"internal/commands/project/prune/prune.go",
"internal/commands/project/remote/add/add.go",
"internal/commands/project/search/project_search.go",
"internal/commands/project/transfer/project_transfer.go",
"internal/commands/project/update/update.go",
"internal/commands/project/view/project_view.go",
"internal/commands/release/list/release_list.go",
"internal/commands/release/releaseutils/upload/upload.go",
"internal/commands/runnercontroller/get/get.go",
"internal/commands/runnercontroller/list/list.go",
"internal/commands/runnercontroller/scope/list/list.go",
"internal/commands/runnercontroller/token/list/list.go",
"internal/commands/schedule/create/create.go",
"internal/commands/schedule/delete/delete.go",
"internal/commands/schedule/list/list.go",
"internal/commands/schedule/run/run.go",
"internal/commands/schedule/update/update.go",
"internal/commands/search/semantic/semantic.go",
"internal/commands/securefile/download/download.go",
"internal/commands/skills/list/list.go",
"internal/commands/skills/skill/skill.go",
"internal/commands/snippet/create/create.go",
"internal/commands/stack/create/stack_create.go",
"internal/commands/stack/infer/stack_infer.go",
"internal/commands/stack/list/stack_list.go",
"internal/commands/stack/save/stack_amend.go",
"internal/commands/stack/save/stack_save.go",
"internal/commands/stack/switch/switch.go",
"internal/commands/todo/done/done.go",
"internal/commands/token/create/create.go",
"internal/commands/token/rotate/rotate.go",
"internal/commands/update/check_update.go",
"internal/commands/user/events/events.go",
"internal/commands/variable/delete/delete.go",
"internal/commands/variable/export/export.go",
"internal/commands/variable/get/get.go",
"internal/commands/variable/list/list.go",
"internal/commands/variable/set/set.go",
"internal/commands/variable/update/update.go",
"internal/commands/version/version.go",
"internal/commands/whatsnew/whatsnew.go",
"internal/commands/workitems/create/create.go",
"internal/commands/workitems/list/list.go",
"internal/commands/workitems/update/update.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "enforce IOStreams output helpers over direct fmt.Fprint calls",
"validation": null
},
{
"commit": "f8aa2a364b01a1052a24440585f61f633f267056",
"elapsed_seconds": 0.02668175008147955,
"parent": "556f782300b8ed76faf656a6637046ad2bba0f47",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update dependency @commitlint/cli to ^21.2.0",
"validation": null
},
{
"commit": "556f782300b8ed76faf656a6637046ad2bba0f47",
"elapsed_seconds": 0.0356630829628557,
"parent": "0e40a22b2b165d9b0b32ba94d2e288cb827002d6",
"reason": "no eligible unit-test file",
"source_changed_lines": 23,
"source_paths": [
"internal/commands/duo/cli/cli.go",
"internal/commands/duo/duo.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "docs: updates for GitLab Duo CLI GA",
"validation": null
},
{
"commit": "0e40a22b2b165d9b0b32ba94d2e288cb827002d6",
"elapsed_seconds": 77.69556054123677,
"parent": "85b59ceb77434c988fead857a372691868aba6d7",
"reason": "selected public tests fail at base",
"source_changed_lines": 90,
"source_paths": [
"internal/commands/mr/mrutils/discussion_print.go",
"internal/commands/mr/note/mr_note_list.go",
"internal/commands/mr/view/mr_view.go",
"internal/git/git_runner.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [
"internal/commands/mr/mrutils/discussion_print_test.go",
"internal/commands/mr/note/mr_note_list_test.go",
"internal/commands/mr/view/mr_view_test.go"
],
"title": "show note and discussion IDs in mr note list",
"validation": {
"commands": [
"go test ./internal/commands/mr/mrutils -count=1",
"go test ./internal/commands/mr/note -count=1",
"go test ./internal/commands/mr/view -count=1"
],
"elapsed_seconds": 77.66050008311868,
"original": [
{
"command": "go test ./internal/commands/mr/mrutils -count=1",
"elapsed_seconds": 1.0969486669637263,
"returncode": 1,
"stderr": "",
"stdout": "\u001b[1;38;2;119;89;194mMultiple merge requests exist for this branch. Select one:\u001b[m \n1. !1 (foo) by @profclems\n2. !2 (foo) by @maxice8\nEnter a number between 1 and 2: \n\n--- FAIL: Test_getMRForBranchPrompt (0.00s)\n iostreams.go:48: ugh: step Expect(\"Multiple merge requests exist for this branch. Select one:\") failed: ugh: context cancelled while waiting for \"Multiple merge requests exist for this branch. Select one:\"\n \n Screen:\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n console.go:69: ugh: 2 expectation(s) still pending (0/2 executed)\nFAIL\nFAIL\tgitlab.com/gitlab-org/cli/internal/commands/mr/mrutils\t0.321s\nFAIL\n",
"timed_out": false
},
{
"command": "go test ./internal/commands/mr/note -count=1",
"elapsed_seconds": 74.62907791696489,
"returncode": 1,
"stderr": "",
"stdout": "a discussion on merge request 123 by prefix\nglab mr note reopen 123 abc12345\n\n# Reopen a discussion by note ID\nglab mr note reopen 3107030349\n\n# Reopen a discussion by prefix (8+ chars, auto-detects merge request from branch)\nglab mr note reopen abc12345\n\n# Reopen a discussion by full ID\nglab mr note reopen abc12345deadbeef1234567890abcdef12345678\n\n\nFlags:\n -h, --help help for reopen\n\nError: failed to get merge request 122: 404 Not Found\nUsage:\n note [<id> | <branch>] [flags]\n note [command]\n\nAliases:\n note, comment\n\nAvailable Commands:\n completion Generate the autocompletion script for the specified shell\n create Create a comment or discussion on a merge request. (EXPERIMENTAL)\n delete Delete a note from a merge request. (EXPERIMENTAL)\n help Help about any command\n list List merge request discussions. (EXPERIMENTAL)\n reopen Reopen a discussion on a merge request. (EXPERIMENTAL)\n resolve Resolve a discussion on a merge request. (EXPERIMENTAL)\n update Update the body of a note on a merge request. (EXPERIMENTAL)\n\nFlags:\n -h, --help help for note\n\nUse \"note [command] --help\" for more information about a command.\n\nError: discussion ID prefix must be at least 8 characters, got 3\nUsage:\n note resolve [<id> | <branch>] <discussion-id> [flags]\n\nExamples:\n# Resolve a discussion on merge request 123 by prefix\nglab mr note resolve 123 abc12345\n\n# Resolve a discussion by note ID\nglab mr note resolve 3107030349\n\n# Resolve a discussion by prefix (8+ chars, auto-detects merge request from branch)\nglab mr note resolve abc12345\n\n# Resolve a discussion by full ID\nglab mr note resolve abc12345deadbeef1234567890abcdef12345678\n\n\nFlags:\n -h, --help help for resolve\n\nError: note 999999 not found in merge request !1: note 999999 not found\nError: prefix \"abc12345\" matches 2 discussions: abc12345\u2026, abc12345\u2026\nUsage:\n note resolve [<id> | <branch>] <discussion-id> [flags]\n\nExamples:\n# Resolve a discussion on merge request 123 by prefix\nglab mr note resolve 123 abc12345\n\n# Resolve a discussion by note ID\nglab mr note resolve 3107030349\n\n# Resolve a discussion by prefix (8+ chars, auto-detects merge request from branch)\nglab mr note resolve abc12345\n\n# Resolve a discussion by full ID\nglab mr note resolve abc12345deadbeef1234567890abcdef12345678\n\n\nFlags:\n -h, --help help for resolve\n\nUsage:\n note resolve [<id> | <branch>] <discussion-id> [flags]\n\nExamples:\n# Resolve a discussion on merge request 123 by prefix\nglab mr note resolve 123 abc12345\n\n# Resolve a discussion by note ID\nglab mr note resolve 3107030349\n\n# Resolve a discussion by prefix (8+ chars, auto-detects merge request from branch)\nglab mr note resolve abc12345\n\n# Resolve a discussion by full ID\nglab mr note resolve abc12345deadbeef1234567890abcdef12345678\n\n\nFlags:\n -h, --help help for resolve\n\nError: discussion ID prefix must be at least 8 characters, got 3\nError: no discussion found matching prefix \"zzz12345\"\nUsage:\n note resolve [<id> | <branch>] <discussion-id> [flags]\n\nExamples:\n# Resolve a discussion on merge request 123 by prefix\nglab mr note resolve 123 abc12345\n\n# Resolve a discussion by note ID\nglab mr note resolve 3107030349\n\n# Resolve a discussion by prefix (8+ chars, auto-detects merge request from branch)\nglab mr note resolve abc12345\n\n# Resolve a discussion by full ID\nglab mr note resolve abc12345deadbeef1234567890abcdef12345678\n\n\nFlags:\n -h, --help help for resolve\n\nUsage:\n create [<id> | <branch>] [flags]\n\nExamples:\n# Add a comment to merge request 123\nglab mr note create 123 -m \"Looks good to me!\"\n\n# Add a comment to the current branch's merge request\nglab mr note create -m \"LGTM\"\n\n# Open editor to compose the message\nglab mr note create 123\n\n# Pipe from stdin\necho \"LGTM\" | glab mr note create 123\n\n# Skip if already posted\nglab mr note create 123 -m \"LGTM\" --unique\n\n# Create a non-resolvable note, for example for bot or CI status updates\nglab mr note create 123 -m \"Build status: green\" --resolvable=false\n\n# Reply to an existing discussion thread\nglab mr note create 123 --reply abc12345 -m \"I agree!\"\n\n# Add a diff comment on line 42 of main.go\nglab mr note create 123 --file main.go --line 42 -m \"Needs refactoring\"\n\n# Add a diff comment on lines 10-15 (multiline range)\nglab mr note create 123 --file main.go --line 10:15 -m \"Extract this block\"\n\n# Add a diff comment on a removed line (old side)\nglab mr note create 123 --file main.go --old-line 7 -m \"Why was this removed?\"\n\n# Add a file-level diff comment (no line specified)\nglab mr note create 123 --file main.go -m \"General comment on this file\"\n\n\nFlags:\n --file string File path for a diff comment, like <path/to/file>. Targets the latest merge request diff version.\n -h, --help help for create\n --line string Line in the new version. A single line number, like 42, or a range, like 10:15.\n -m, --message string Comment or note message.\n --old-line int Line in the old version, for commenting on a removed line.\n --reply string Reply to an existing discussion. Accepts a full discussion ID or a prefix of 8 or more characters.\n --resolvable Create the note as a resolvable discussion thread. Set to false to create a non-resolvable note. (default true)\n --unique Don't create a note if a note with the same body already exists. Reads all merge request comments first.\n\nError: accepts between 1 and 2 arg(s), received 3\nUsage:\n note reopen [<id> | <branch>] <discussion-id> [flags]\n\nExamples:\n# Reopen a discussion on merge request 123 by prefix\nglab mr note reopen 123 abc12345\n\n# Reopen a discussion by note ID\nglab mr note reopen 3107030349\n\n# Reopen a discussion by prefix (8+ chars, auto-detects merge request from branch)\nglab mr note reopen abc12345\n\n# Reopen a discussion by full ID\nglab mr note reopen abc12345deadbeef1234567890abcdef12345678\n\n\nFlags:\n -h, --help help for reopen\n\nFAIL\nFAIL\tgitlab.com/gitlab-org/cli/internal/commands/mr/note\t73.904s\nFAIL\n",
"timed_out": false
},
{
"command": "go test ./internal/commands/mr/view -count=1",
"elapsed_seconds": 1.7755024582147598,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/mr/view\t1.310s\n",
"timed_out": false
}
],
"reason": "selected public tests fail at base",
"valid": false
}
},
{
"commit": "85b59ceb77434c988fead857a372691868aba6d7",
"elapsed_seconds": 0.04035445814952254,
"parent": "b824797c80138559aac5026f9609ada48687266c",
"reason": "no eligible unit-test file",
"source_changed_lines": 2,
"source_paths": [
"internal/commands/duo/cli/cli.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "support Duo CLI v9 auto-updates",
"validation": null
},
{
"commit": "b824797c80138559aac5026f9609ada48687266c",
"elapsed_seconds": 0.026073375018313527,
"parent": "e9d64d2f9b05185edb6370540497324b0f656daf",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module gitlab.com/gitlab-org/api/client-go/v2 to v2.46.0",
"validation": null
},
{
"commit": "e9d64d2f9b05185edb6370540497324b0f656daf",
"elapsed_seconds": 0.20360299898311496,
"parent": "81dac037a47607ab27335fd9a7c63afc5df9de7b",
"reason": "selected public tests fail at base",
"source_changed_lines": 332,
"source_paths": [
"internal/commands/root.go",
"internal/commands/security/config/config.go",
"internal/commands/security/config/disable/disable.go",
"internal/commands/security/config/enable/enable.go",
"internal/commands/security/config/status/status.go",
"internal/commands/security/security.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [
"internal/commands/security/config/disable/disable_test.go",
"internal/commands/security/config/enable/enable_test.go",
"internal/commands/security/config/status/status_test.go"
],
"title": "add commands to manage security configuration profiles",
"validation": {
"commands": [
"go test ./internal/commands/security/config/disable -count=1",
"go test ./internal/commands/security/config/enable -count=1",
"go test ./internal/commands/security/config/status -count=1"
],
"elapsed_seconds": 0.16937504103407264,
"original": [
{
"command": "go test ./internal/commands/security/config/disable -count=1",
"elapsed_seconds": 0.006363291060552001,
"returncode": 1,
"stderr": "# ./internal/commands/security/config/disable\nstat /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-z6zgplq0/tree/internal/commands/security/config/disable: directory not found\n",
"stdout": "FAIL\t./internal/commands/security/config/disable [setup failed]\nFAIL\n",
"timed_out": false
},
{
"command": "go test ./internal/commands/security/config/enable -count=1",
"elapsed_seconds": 0.005833292147144675,
"returncode": 1,
"stderr": "# ./internal/commands/security/config/enable\nstat /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-z6zgplq0/tree/internal/commands/security/config/enable: directory not found\n",
"stdout": "FAIL\t./internal/commands/security/config/enable [setup failed]\nFAIL\n",
"timed_out": false
},
{
"command": "go test ./internal/commands/security/config/status -count=1",
"elapsed_seconds": 0.005788750015199184,
"returncode": 1,
"stderr": "# ./internal/commands/security/config/status\nstat /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-z6zgplq0/tree/internal/commands/security/config/status: directory not found\n",
"stdout": "FAIL\t./internal/commands/security/config/status [setup failed]\nFAIL\n",
"timed_out": false
}
],
"reason": "selected public tests fail at base",
"valid": false
}
},
{
"commit": "81dac037a47607ab27335fd9a7c63afc5df9de7b",
"elapsed_seconds": 0.028161291033029556,
"parent": "53a036e076134debf9275ac4baad2e0118da840d",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module gitlab.com/gitlab-org/api/client-go/v2 to v2.45.0",
"validation": null
},
{
"commit": "53a036e076134debf9275ac4baad2e0118da840d",
"elapsed_seconds": 0.035033666994422674,
"parent": "c8a611113c5d28b2bb51e8a09ab9b5099057bdda",
"reason": "no eligible unit-test file",
"source_changed_lines": 2,
"source_paths": [
"cmd/gen-docs/docs.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "docs: update stage from Create to AI Coding",
"validation": null
},
{
"commit": "c8a611113c5d28b2bb51e8a09ab9b5099057bdda",
"elapsed_seconds": 0.026242542080581188,
"parent": "48719f1d7b1a66ea578810065fc33eac1a7926a8",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module github.com/docker/cli to v29.6.1+incompatible",
"validation": null
},
{
"commit": "48719f1d7b1a66ea578810065fc33eac1a7926a8",
"elapsed_seconds": 0.025738625088706613,
"parent": "9fb2af956b2f126b6b24dd47ac79672bf71ab961",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module charm.land/lipgloss/v2 to v2.0.5",
"validation": null
},
{
"commit": "9fb2af956b2f126b6b24dd47ac79672bf71ab961",
"elapsed_seconds": 0.02566624991595745,
"parent": "059a0de7f5f17746f932e7f0f70794772cfb7bb6",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore: update documentation MR template",
"validation": null
},
{
"commit": "059a0de7f5f17746f932e7f0f70794772cfb7bb6",
"elapsed_seconds": 0.03510749991983175,
"parent": "42d7bae31e6bfa10db5bd54c68add493451dbf57",
"reason": "no eligible unit-test file",
"source_changed_lines": 5,
"source_paths": [
"internal/commands/token/rotate/rotate.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "docs: clarify glab token rotate command info",
"validation": null
},
{
"commit": "42d7bae31e6bfa10db5bd54c68add493451dbf57",
"elapsed_seconds": 0.025497624883428216,
"parent": "81d44b4f4abe48dcc67a16072598166838b25391",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "docs: add new CLAUDE.md file and reference AGENTS.md",
"validation": null
},
{
"commit": "81d44b4f4abe48dcc67a16072598166838b25391",
"elapsed_seconds": 0.02621033415198326,
"parent": "fc1869c7555df65250a17781e24ab077ad1db267",
"reason": "excluded dependency/format/generated/revert subject",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update dependency @commitlint/format to ^21.1.0",
"validation": null
},
{
"commit": "fc1869c7555df65250a17781e24ab077ad1db267",
"elapsed_seconds": 0.025281166890636086,
"parent": "2389b375fc54aff90c7bf9e025b4489dc4c8d5ac",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module gitlab.com/gitlab-org/api/client-go/v2 to v2.44.0",
"validation": null
},
{
"commit": "2389b375fc54aff90c7bf9e025b4489dc4c8d5ac",
"elapsed_seconds": 0.034644209081307054,
"parent": "b19ca82851a337860be66c5ebb90acd0115ffc30",
"reason": "no eligible unit-test file",
"source_changed_lines": 39,
"source_paths": [
"internal/commands/container_registry/repository/delete/delete.go",
"internal/commands/container_registry/repository/list/list.go",
"internal/commands/container_registry/repository/view/view.go",
"internal/commands/container_registry/tag/list/list.go",
"internal/commands/container_registry/tag/view/view.go",
"internal/commands/packages/delete/delete.go",
"internal/commands/packages/list/list.go",
"internal/commands/packages/packages.go",
"internal/commands/packages/upload/upload.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "docs: refine packages and container-registry command help text",
"validation": null
},
{
"commit": "b19ca82851a337860be66c5ebb90acd0115ffc30",
"elapsed_seconds": 0.033493125112727284,
"parent": "1a34fdec10e222ed5dfc1fb7c5876d2b78fcd95a",
"reason": "no eligible unit-test file",
"source_changed_lines": 3,
"source_paths": [
"internal/commands/duo/cli/cli.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore: explain that token env will work in snap",
"validation": null
},
{
"commit": "1a34fdec10e222ed5dfc1fb7c5876d2b78fcd95a",
"elapsed_seconds": 0.02515216707251966,
"parent": "2fc3a4d91b216384eada7ddc330fc08f80b841f4",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module github.com/docker/cli to v29.6.0+incompatible",
"validation": null
},
{
"commit": "2fc3a4d91b216384eada7ddc330fc08f80b841f4",
"elapsed_seconds": 0.03558124997653067,
"parent": "cf680dea5389e97d18754ef93db8345e77bf2ca7",
"reason": "no eligible unit-test file",
"source_changed_lines": 5,
"source_paths": [
"internal/commands/config/config.go",
"internal/commands/root.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "docs(whatsnew): document show_whats_new config and env var",
"validation": null
},
{
"commit": "cf680dea5389e97d18754ef93db8345e77bf2ca7",
"elapsed_seconds": 0.025469833053648472,
"parent": "8f4ac1c3b179417fdf0e790943e9c0e6df599419",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module gitlab.com/gitlab-org/api/client-go/v2 to v2.43.0",
"validation": null
},
{
"commit": "8f4ac1c3b179417fdf0e790943e9c0e6df599419",
"elapsed_seconds": 9.466550125041977,
"parent": "310fc5b51cf54b221430f18d7dabbdd0a3a34bc6",
"reason": null,
"source_changed_lines": 52,
"source_paths": [
"internal/commands/stack/save/stack_amend.go"
],
"status": "selected",
"task_id": "TASK_S2_R002_007",
"test_paths": [
"internal/commands/stack/save/stack_amend_test.go"
],
"title": "add --reword flag to fix commits without staging files",
"validation": {
"commands": [
"go test ./internal/commands/stack/save -count=1"
],
"elapsed_seconds": 9.432021416956559,
"gold": [
{
"command": "go test ./internal/commands/stack/save -count=1",
"elapsed_seconds": 4.658619875088334,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/stack/save\t4.264s\n",
"timed_out": false
}
],
"hidden": [
{
"command": "go test ./internal/commands/stack/save -count=1",
"elapsed_seconds": 0.1812010840512812,
"returncode": 1,
"stderr": "# gitlab.com/gitlab-org/cli/internal/commands/stack/save [gitlab.com/gitlab-org/cli/internal/commands/stack/save.test]\ninternal/commands/stack/save/stack_amend_test.go:160:99: too many arguments in call to amendFunc\n\thave (context.Context, *cmdtest.Factory, []string, cmdutils.GetTextUsingEditor, string, bool, bool, bool)\n\twant (context.Context, cmdutils.Factory, []string, cmdutils.GetTextUsingEditor, string, bool, bool)\ninternal/commands/stack/save/stack_amend_test.go:213:121: too many arguments in call to amendFunc\n\thave (context.Context, *cmdtest.Factory, []string, cmdutils.GetTextUsingEditor, string, bool, bool, bool)\n\twant (context.Context, cmdutils.Factory, []string, cmdutils.GetTextUsingEditor, string, bool, bool)\ninternal/commands/stack/save/stack_amend_test.go:243:83: too many arguments in call to amendFunc\n\thave (context.Context, *cmdtest.Factory, []string, cmdutils.GetTextUsingEditor, string, bool, bool, bool)\n\twant (context.Context, cmdutils.Factory, []string, cmdutils.GetTextUsingEditor, string, bool, bool)\n",
"stdout": "FAIL\tgitlab.com/gitlab-org/cli/internal/commands/stack/save [build failed]\nFAIL\n",
"timed_out": false
}
],
"hidden_apply": {
"elapsed_seconds": 0.009814375080168247,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"original": [
{
"command": "go test ./internal/commands/stack/save -count=1",
"elapsed_seconds": 4.4198339998256415,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/stack/save\t3.679s\n",
"timed_out": false
}
],
"reason": null,
"source_apply": {
"elapsed_seconds": 0.010264875134453177,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"valid": true
}
},
{
"commit": "310fc5b51cf54b221430f18d7dabbdd0a3a34bc6",
"elapsed_seconds": 0.029236583039164543,
"parent": "5e9f7ee92150280c771fcab9665a8506d5938fce",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module gitlab.com/gitlab-org/api/client-go/v2 to v2.42.0",
"validation": null
},
{
"commit": "5e9f7ee92150280c771fcab9665a8506d5938fce",
"elapsed_seconds": 0.19387104106135666,
"parent": "71078f7cbb5805b69ec27a8586a64979e4d9493b",
"reason": "selected public tests fail at base",
"source_changed_lines": 139,
"source_paths": [
"internal/commands/packages/delete/delete.go",
"internal/commands/packages/packages.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [
"internal/commands/packages/delete/delete_test.go"
],
"title": "add delete command",
"validation": {
"commands": [
"go test ./internal/commands/packages/delete -count=1"
],
"elapsed_seconds": 0.15906925010494888,
"original": [
{
"command": "go test ./internal/commands/packages/delete -count=1",
"elapsed_seconds": 0.006177791161462665,
"returncode": 1,
"stderr": "# ./internal/commands/packages/delete\nstat /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-rq6l29ce/tree/internal/commands/packages/delete: directory not found\n",
"stdout": "FAIL\t./internal/commands/packages/delete [setup failed]\nFAIL\n",
"timed_out": false
}
],
"reason": "selected public tests fail at base",
"valid": false
}
},
{
"commit": "71078f7cbb5805b69ec27a8586a64979e4d9493b",
"elapsed_seconds": 0.7893687910400331,
"parent": "45c9976d3d33deb99f33410f8c4c919971b4c9cf",
"reason": "selected public tests fail at base",
"source_changed_lines": 385,
"source_paths": [
"internal/commands/packages/download/download.go",
"internal/commands/packages/packages.go",
"internal/commands/securefile/download/download.go",
"internal/utils/tempfile.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [
"internal/commands/packages/download/download_test.go",
"internal/utils/tempfile_test.go"
],
"title": "add download command",
"validation": {
"commands": [
"go test ./internal/commands/packages/download -count=1",
"go test ./internal/utils -count=1"
],
"elapsed_seconds": 0.7524250000715256,
"original": [
{
"command": "go test ./internal/commands/packages/download -count=1",
"elapsed_seconds": 0.006269374862313271,
"returncode": 1,
"stderr": "# ./internal/commands/packages/download\nstat /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-lbhzvpm4/tree/internal/commands/packages/download: directory not found\n",
"stdout": "FAIL\t./internal/commands/packages/download [setup failed]\nFAIL\n",
"timed_out": false
},
{
"command": "go test ./internal/utils -count=1",
"elapsed_seconds": 0.5957239579875022,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/utils\t0.301s\n",
"timed_out": false
}
],
"reason": "selected public tests fail at base",
"valid": false
}
},
{
"commit": "45c9976d3d33deb99f33410f8c4c919971b4c9cf",
"elapsed_seconds": 11.422268250025809,
"parent": "876a8143fc7c9fe2f77ea29e2522396d42ed335f",
"reason": "selected public tests fail at base",
"source_changed_lines": 74,
"source_paths": [
"internal/commands/help/help.go",
"internal/commands/root.go",
"internal/commands/update/check_update.go",
"internal/utils/utils.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [
"internal/commands/help/help_test.go",
"internal/commands/root_test.go",
"internal/commands/update/check_update_test.go",
"internal/git/git_test.go"
],
"title": "route deprecation warnings to stderr",
"validation": {
"commands": [
"go test ./internal/commands -count=1",
"go test ./internal/commands/help -count=1",
"go test ./internal/commands/update -count=1",
"go test ./internal/git -count=1"
],
"elapsed_seconds": 11.384049416985363,
"original": [
{
"command": "go test ./internal/commands -count=1",
"elapsed_seconds": 5.069686833070591,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands\t1.906s\n",
"timed_out": false
},
{
"command": "go test ./internal/commands/help -count=1",
"elapsed_seconds": 0.7418248341418803,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/help\t0.319s\n",
"timed_out": false
},
{
"command": "go test ./internal/commands/update -count=1",
"elapsed_seconds": 0.8388140408787876,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/update\t0.360s\n",
"timed_out": false
},
{
"command": "go test ./internal/git -count=1",
"elapsed_seconds": 4.578340416075662,
"returncode": 1,
"stderr": "",
"stdout": "--- FAIL: TestGitCommonDir (0.11s)\n --- FAIL: TestGitCommonDir/worktree (0.09s)\n git_test.go:347: \n \tError Trace:\t/private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-zi2b8m87/tree/internal/git/git_test.go:347\n \tError: \tNot equal: \n \t \texpected: \"/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/TestGitCommonDirworktree1963832854/001/.git\"\n \t \tactual : \"/private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/TestGitCommonDirworktree1963832854/001/.git\"\n \t \t\n \t \tDiff:\n \t \t--- Expected\n \t \t+++ Actual\n \t \t@@ -1 +1 @@\n \t \t-/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/TestGitCommonDirworktree1963832854/001/.git\n \t \t+/private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/TestGitCommonDirworktree1963832854/001/.git\n \tTest: \tTestGitCommonDir/worktree\nFAIL\nFAIL\tgitlab.com/gitlab-org/cli/internal/git\t4.234s\nFAIL\n",
"timed_out": false
}
],
"reason": "selected public tests fail at base",
"valid": false
}
},
{
"commit": "876a8143fc7c9fe2f77ea29e2522396d42ed335f",
"elapsed_seconds": 2.799506166949868,
"parent": "3bff4cc7cc31e0c6ba630440deaca38044fc46f5",
"reason": null,
"source_changed_lines": 75,
"source_paths": [
"internal/commands/orbit/internal/orbiterr/orbiterr.go",
"internal/commands/orbit/remote/status/status.go"
],
"status": "selected",
"task_id": "TASK_S2_R002_008",
"test_paths": [
"internal/commands/orbit/remote/status/status_test.go"
],
"title": "handle new nested status response shape",
"validation": {
"commands": [
"go test ./internal/commands/orbit/remote/status -count=1"
],
"elapsed_seconds": 2.761465667048469,
"gold": [
{
"command": "go test ./internal/commands/orbit/remote/status -count=1",
"elapsed_seconds": 0.7554947091266513,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/orbit/remote/status\t0.285s\n",
"timed_out": false
}
],
"hidden": [
{
"command": "go test ./internal/commands/orbit/remote/status -count=1",
"elapsed_seconds": 0.7534967078827322,
"returncode": 1,
"stderr": "",
"stdout": "Error: Knowledge Graph endpoint not available\n\nThe `/api/v4/orbit/*` endpoints returned 404. The most likely cause is\nthat the `knowledge_graph` feature flag is disabled for your user on this\ninstance. Contact an instance administrator to enable it.\nUsage:\n status [flags]\n\nExamples:\n$ glab orbit remote status\n\n\nFlags:\n -h, --help help for status\n --hostname gitlab.com GitLab hostname to query. Defaults to the current repository's host or gitlab.com.\n --jq string Filter JSON output with a jq expression.\n\n--- FAIL: TestStatus_NewShape_UserUnavailable (0.00s)\n status_test.go:92: \n \tError Trace:\t/private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-z6tk94lk/tree/internal/commands/orbit/remote/status/status_test.go:92\n \tError: \tAn error is expected but got nil.\n \tTest: \tTestStatus_NewShape_UserUnavailable\n--- FAIL: TestStatus_NewShape_UserAvailable_SystemNil (0.00s)\n status_test.go:121: \n \tError Trace:\t/private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-z6tk94lk/tree/internal/commands/orbit/remote/status/status_test.go:121\n \tError: \tAn error is expected but got nil.\n \tTest: \tTestStatus_NewShape_UserAvailable_SystemNil\n--- FAIL: TestStatus_NewShape_HappyPath (0.00s)\n status_test.go:64: \n \tError Trace:\t/private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-z6tk94lk/tree/internal/commands/orbit/remote/status/status_test.go:64\n \tError: \tNot equal: \n \t \texpected: \"healthy\"\n \t \tactual : \"\"\n \t \t\n \t \tDiff:\n \t \t--- Expected\n \t \t+++ Actual\n \t \t@@ -1 +1 @@\n \t \t-healthy\n \t \t+\n \tTest: \tTestStatus_NewShape_HappyPath\n status_test.go:65: \n \tError Trace:\t/private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-z6tk94lk/tree/internal/commands/orbit/remote/status/status_test.go:65\n \tError: \tNot equal: \n \t \texpected: \"0.6.0\"\n \t \tactual : \"\"\n \t \t\n \t \tDiff:\n \t \t--- Expected\n \t \t+++ Actual\n \t \t@@ -1 +1 @@\n \t \t-0.6.0\n \t \t+\n \tTest: \tTestStatus_NewShape_HappyPath\n status_test.go:66: \n \tError Trace:\t/private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-z6tk94lk/tree/internal/commands/orbit/remote/status/status_test.go:66\n \tError: \t\"[]\" should have 1 item(s), but has 0\n \tTest: \tTestStatus_NewShape_HappyPath\nFAIL\nFAIL\tgitlab.com/gitlab-org/cli/internal/commands/orbit/remote/status\t0.291s\nFAIL\n",
"timed_out": false
}
],
"hidden_apply": {
"elapsed_seconds": 0.010627917014062405,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"original": [
{
"command": "go test ./internal/commands/orbit/remote/status -count=1",
"elapsed_seconds": 1.0772221670486033,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/orbit/remote/status\t0.286s\n",
"timed_out": false
}
],
"reason": null,
"source_apply": {
"elapsed_seconds": 0.011075458023697138,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"valid": true
}
},
{
"commit": "3bff4cc7cc31e0c6ba630440deaca38044fc46f5",
"elapsed_seconds": 0.026426916010677814,
"parent": "6741efab53a09c9a0ea11fd969b9ad0b36111fb3",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module gitlab.com/gitlab-org/api/client-go/v2 to v2.40.1",
"validation": null
},
{
"commit": "6741efab53a09c9a0ea11fd969b9ad0b36111fb3",
"elapsed_seconds": 0.03402658295817673,
"parent": "adc74f82d7c80b74e6fd363610a20a5414b5f561",
"reason": "excluded dependency/format/generated/revert subject",
"source_changed_lines": 49,
"source_paths": [
"internal/commands/orbit/remote/graphstatus/graphstatus.go",
"internal/commands/orbit/remote/query/query.go",
"internal/commands/orbit/remote/remote.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [
"internal/commands/orbit/remote/graphstatus/graphstatus_test.go",
"internal/commands/orbit/remote/query/query_test.go"
],
"title": "rename --format flag to --response-format",
"validation": null
},
{
"commit": "adc74f82d7c80b74e6fd363610a20a5414b5f561",
"elapsed_seconds": 0.025135665899142623,
"parent": "f139026900beb39cbdfd45bf038201ed2e5eaf41",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "uppercase initialisms in test key generators",
"validation": null
},
{
"commit": "f139026900beb39cbdfd45bf038201ed2e5eaf41",
"elapsed_seconds": 2.104065833147615,
"parent": "87fd929036f5aba0c7795836332c2d28e031c2a0",
"reason": null,
"source_changed_lines": 35,
"source_paths": [
"internal/commands/duo/cli/cli.go"
],
"status": "selected",
"task_id": "TASK_S2_R002_009",
"test_paths": [
"internal/commands/duo/cli/cli_test.go"
],
"title": "warn when running duo cli under snap confinement",
"validation": {
"commands": [
"go test ./internal/commands/duo/cli -count=1"
],
"elapsed_seconds": 2.070312458090484,
"gold": [
{
"command": "go test ./internal/commands/duo/cli -count=1",
"elapsed_seconds": 0.6982851668726653,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/duo/cli\t0.288s\n",
"timed_out": false
}
],
"hidden": [
{
"command": "go test ./internal/commands/duo/cli -count=1",
"elapsed_seconds": 0.178195291897282,
"returncode": 1,
"stderr": "# gitlab.com/gitlab-org/cli/internal/commands/duo/cli [gitlab.com/gitlab-org/cli/internal/commands/duo/cli.test]\ninternal/commands/duo/cli/cli_test.go:223:3: undefined: warnIfSnapConfined\ninternal/commands/duo/cli/cli_test.go:236:3: undefined: warnIfSnapConfined\ninternal/commands/duo/cli/cli_test.go:246:3: undefined: warnIfSnapConfined\ninternal/commands/duo/cli/cli_test.go:256:3: undefined: warnIfSnapConfined\n",
"stdout": "FAIL\tgitlab.com/gitlab-org/cli/internal/commands/duo/cli [build failed]\nFAIL\n",
"timed_out": false
}
],
"hidden_apply": {
"elapsed_seconds": 0.009328917134553194,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"original": [
{
"command": "go test ./internal/commands/duo/cli -count=1",
"elapsed_seconds": 1.0201331251300871,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/duo/cli\t0.276s\n",
"timed_out": false
}
],
"reason": null,
"source_apply": {
"elapsed_seconds": 0.010229125153273344,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"valid": true
}
},
{
"commit": "87fd929036f5aba0c7795836332c2d28e031c2a0",
"elapsed_seconds": 0.030664333142340183,
"parent": "a91aa5280fa8c35fb9175786fc3c501a7b1482ec",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module golang.org/x/crypto to v0.53.0",
"validation": null
},
{
"commit": "a91aa5280fa8c35fb9175786fc3c501a7b1482ec",
"elapsed_seconds": 0.034893041010946035,
"parent": "fced896e9190d52167332124c555045a00487afe",
"reason": "no eligible unit-test file",
"source_changed_lines": 150,
"source_paths": [
"cmd/gen-docs/docs.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "generate GitLab Docs navigation block for glab",
"validation": null
},
{
"commit": "fced896e9190d52167332124c555045a00487afe",
"elapsed_seconds": 0.025968792149797082,
"parent": "a73f12e4eaae768fc5bc7f265fd6bae74a7530b7",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module github.com/coder/websocket to v1.8.15",
"validation": null
},
{
"commit": "a73f12e4eaae768fc5bc7f265fd6bae74a7530b7",
"elapsed_seconds": 0.026367457816377282,
"parent": "a9005b57c809c282b7ddf15bc9d77be37df043a9",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module charm.land/lipgloss/v2 to v2.0.4",
"validation": null
},
{
"commit": "a9005b57c809c282b7ddf15bc9d77be37df043a9",
"elapsed_seconds": 0.02668858296237886,
"parent": "585ea986fdcd2ca31a7b57a66711fc7703c4dd6f",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module charm.land/glamour/v2 to v2.0.1",
"validation": null
},
{
"commit": "585ea986fdcd2ca31a7b57a66711fc7703c4dd6f",
"elapsed_seconds": 0.02626308286562562,
"parent": "1f980ba0a9731a26588fe201003592891fa123ec",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore: update labels in templates",
"validation": null
},
{
"commit": "1f980ba0a9731a26588fe201003592891fa123ec",
"elapsed_seconds": 0.026082458905875683,
"parent": "1a0611f7f299e6844cd61f3ab028ff460746242c",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module k8s.io/client-go to v0.36.2",
"validation": null
},
{
"commit": "1a0611f7f299e6844cd61f3ab028ff460746242c",
"elapsed_seconds": 0.02703645802102983,
"parent": "b45deb70ad0bea865b7f6efaac24c7911b846fc5",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "docs(skills): improve glab threaded-reply guidance",
"validation": null
},
{
"commit": "b45deb70ad0bea865b7f6efaac24c7911b846fc5",
"elapsed_seconds": 0.195903958985582,
"parent": "c724bea5fca299c989b0b27b2b24cd1cbe7136af",
"reason": "selected public tests fail at base",
"source_changed_lines": 156,
"source_paths": [
"internal/commands/packages/packages.go",
"internal/commands/packages/upload/upload.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [
"internal/commands/packages/upload/upload_test.go"
],
"title": "add upload command",
"validation": {
"commands": [
"go test ./internal/commands/packages/upload -count=1"
],
"elapsed_seconds": 0.15993650001473725,
"original": [
{
"command": "go test ./internal/commands/packages/upload -count=1",
"elapsed_seconds": 0.006635209079831839,
"returncode": 1,
"stderr": "# ./internal/commands/packages/upload\nstat /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-3yt9ajfd/tree/internal/commands/packages/upload: directory not found\n",
"stdout": "FAIL\t./internal/commands/packages/upload [setup failed]\nFAIL\n",
"timed_out": false
}
],
"reason": "selected public tests fail at base",
"valid": false
}
},
{
"commit": "c724bea5fca299c989b0b27b2b24cd1cbe7136af",
"elapsed_seconds": 0.028270458104088902,
"parent": "500227646ef75d963e4be700c87994355c2348a2",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "set release token inline so project GITLAB_TOKEN can't shadow it",
"validation": null
},
{
"commit": "500227646ef75d963e4be700c87994355c2348a2",
"elapsed_seconds": 0.0358491251245141,
"parent": "5905c749cb1819d84c2d11f4347a3ff73cea0e76",
"reason": "production file count exceeds 8",
"source_changed_lines": 1304,
"source_paths": [
"internal/commands/container_registry/container_registry.go",
"internal/commands/container_registry/registryutils/json.go",
"internal/commands/container_registry/registryutils/registryutils.go",
"internal/commands/container_registry/repository/delete/delete.go",
"internal/commands/container_registry/repository/list/list.go",
"internal/commands/container_registry/repository/repository.go",
"internal/commands/container_registry/repository/view/view.go",
"internal/commands/container_registry/tag/delete/delete.go",
"internal/commands/container_registry/tag/list/list.go",
"internal/commands/container_registry/tag/tag.go",
"internal/commands/container_registry/tag/view/view.go",
"internal/commands/root.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [
"internal/commands/container_registry/container_registry_test.go",
"internal/commands/container_registry/registryutils/json_test.go",
"internal/commands/container_registry/registryutils/registryutils_test.go",
"internal/commands/container_registry/repository/delete/delete_test.go",
"internal/commands/container_registry/repository/list/list_test.go",
"internal/commands/container_registry/repository/repository_test.go",
"internal/commands/container_registry/repository/view/view_test.go",
"internal/commands/container_registry/tag/delete/delete_test.go",
"internal/commands/container_registry/tag/list/list_test.go",
"internal/commands/container_registry/tag/tag_test.go",
"internal/commands/container_registry/tag/view/view_test.go"
],
"title": "add container registry repository and tag commands",
"validation": null
},
{
"commit": "5905c749cb1819d84c2d11f4347a3ff73cea0e76",
"elapsed_seconds": 0.025113999843597412,
"parent": "7d9dd61fbfc99b54767d26663a7b733e50a03a55",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "ci: update code-intelligence job to fix job failures",
"validation": null
},
{
"commit": "7d9dd61fbfc99b54767d26663a7b733e50a03a55",
"elapsed_seconds": 0.19063995801843703,
"parent": "086e11a5f808500bdf682122c25e605d55683de9",
"reason": "selected public tests fail at base",
"source_changed_lines": 192,
"source_paths": [
"internal/commands/packages/list/list.go",
"internal/commands/packages/packages.go",
"internal/commands/root.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [
"internal/commands/packages/list/list_test.go"
],
"title": "add packages command group with list",
"validation": {
"commands": [
"go test ./internal/commands/packages/list -count=1"
],
"elapsed_seconds": 0.1564492080360651,
"original": [
{
"command": "go test ./internal/commands/packages/list -count=1",
"elapsed_seconds": 0.006377457873895764,
"returncode": 1,
"stderr": "# ./internal/commands/packages/list\nstat /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-20_2evyl/tree/internal/commands/packages/list: directory not found\n",
"stdout": "FAIL\t./internal/commands/packages/list [setup failed]\nFAIL\n",
"timed_out": false
}
],
"reason": "selected public tests fail at base",
"valid": false
}
},
{
"commit": "086e11a5f808500bdf682122c25e605d55683de9",
"elapsed_seconds": 2.7120750001631677,
"parent": "f78eadbdb202e0d586339606350eab0172e85005",
"reason": null,
"source_changed_lines": 15,
"source_paths": [
"internal/commands/orbit/local/local.go"
],
"status": "selected",
"task_id": "TASK_S2_R002_010",
"test_paths": [
"internal/commands/orbit/local/local_test.go"
],
"title": "install dependency-free Linux build to fix glibc version errors",
"validation": {
"commands": [
"go test ./internal/commands/orbit/local -count=1"
],
"elapsed_seconds": 2.675211041001603,
"gold": [
{
"command": "go test ./internal/commands/orbit/local -count=1",
"elapsed_seconds": 0.7233033331576735,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/orbit/local\t0.306s\n",
"timed_out": false
}
],
"hidden": [
{
"command": "go test ./internal/commands/orbit/local -count=1",
"elapsed_seconds": 0.7266822080127895,
"returncode": 1,
"stderr": "",
"stdout": "Error: the --install and --update flags are mutually exclusive\nUsage:\n local [command] [flags]\n\nExamples:\n# Run the Orbit local CLI\nglab orbit local\n\n# Pass any command or flag through to the orbit binary\nglab orbit local <command>\n\n# Show this help\nglab orbit local --help\n\n# Run without prompts (for use in scripts and non-interactive environments)\nglab orbit local --yes\n\n# Install the Orbit local CLI binary\nglab orbit local --install\n\n# Install the Orbit local CLI binary without prompts\nglab orbit local --install --yes\n\n# Check for and install updates\nglab orbit local --update\n\nFlags:\n -h, --help help for local\n --install Install the Orbit local CLI binary without running it.\n --update Check for and install updates to the binary.\n -y, --yes Skip confirmation prompts.\n\n--- FAIL: TestOrbitAssetName (0.00s)\n local_test.go:96: \n \tError Trace:\t/private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-89hwcsks/tree/internal/commands/orbit/local/local_test.go:96\n \tError: \tNot equal: \n \t \texpected: \"orbit-local-linux-musl-aarch64.tar.gz\"\n \t \tactual : \"orbit-local-linux-aarch64.tar.gz\"\n \t \t\n \t \tDiff:\n \t \t--- Expected\n \t \t+++ Actual\n \t \t@@ -1 +1 @@\n \t \t-orbit-local-linux-musl-aarch64.tar.gz\n \t \t+orbit-local-linux-aarch64.tar.gz\n \tTest: \tTestOrbitAssetName\n local_test.go:97: \n \tError Trace:\t/private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-89hwcsks/tree/internal/commands/orbit/local/local_test.go:97\n \tError: \tNot equal: \n \t \texpected: \"orbit-local-linux-musl-x86_64.tar.gz\"\n \t \tactual : \"orbit-local-linux-x86_64.tar.gz\"\n \t \t\n \t \tDiff:\n \t \t--- Expected\n \t \t+++ Actual\n \t \t@@ -1 +1 @@\n \t \t-orbit-local-linux-musl-x86_64.tar.gz\n \t \t+orbit-local-linux-x86_64.tar.gz\n \tTest: \tTestOrbitAssetName\nFAIL\nFAIL\tgitlab.com/gitlab-org/cli/internal/commands/orbit/local\t0.298s\nFAIL\n",
"timed_out": false
}
],
"hidden_apply": {
"elapsed_seconds": 0.010359457926824689,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"original": [
{
"command": "go test ./internal/commands/orbit/local -count=1",
"elapsed_seconds": 1.0528262921143323,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/orbit/local\t0.296s\n",
"timed_out": false
}
],
"reason": null,
"source_apply": {
"elapsed_seconds": 0.010612874990329146,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"valid": true
}
},
{
"commit": "f78eadbdb202e0d586339606350eab0172e85005",
"elapsed_seconds": 0.026701708091422915,
"parent": "790812bca544765b7e4808e4f9a36a773bc05e23",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [
"internal/commands/label/list/label_list_test.go"
],
"title": "chore(deps): update module gitlab.com/gitlab-org/api/client-go/v2 to v2.39.0",
"validation": null
},
{
"commit": "790812bca544765b7e4808e4f9a36a773bc05e23",
"elapsed_seconds": 22.664043416967615,
"parent": "5ac068ce4d57ad6e640d8465f072b5c12f25a027",
"reason": "selected tests fail after the gold patch",
"source_changed_lines": 61,
"source_paths": [
"internal/commands/stack/switch/switch.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [
"internal/commands/stack/switch/switch_test.go"
],
"title": "make switch interactive",
"validation": {
"commands": [
"go test ./internal/commands/stack/switch -count=1"
],
"elapsed_seconds": 22.629389875102788,
"gold": [
{
"command": "go test ./internal/commands/stack/switch -count=1",
"elapsed_seconds": 10.970955417025834,
"returncode": 1,
"stderr": "",
"stdout": "\u001b[1;38;2;119;89;194mChoose a stack to switch to:\u001b[m \n1. current-stack\n2. target-stack\nEnter a number between 1 and 2: \n\n--- FAIL: TestSwitchPromptsForStackName (10.05s)\n factory.go:327: ugh: step Expect(\"Choose a stack to switch to:\") failed: ugh: timeout waiting for \"Choose a stack to switch to:\"\n \n Screen:\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n console.go:69: ugh: 2 expectation(s) still pending (0/2 executed)\nError: switching stacks failed: the <stack-name> argument is required when prompts are disabled\nUsage:\n switch [stack-name] [flags]\n\nExamples:\n# Interactively pick from the list of available stacks.\nglab stack switch\n\n# Switch to a specific stack by name.\nglab stack switch <stack-name>\n\nFlags:\n -h, --help help for switch\n\nError: switching stacks failed: no stacks found; create one with \"glab stack create\"\nUsage:\n switch [stack-name] [flags]\n\nExamples:\n# Interactively pick from the list of available stacks.\nglab stack switch\n\n# Switch to a specific stack by name.\nglab stack switch <stack-name>\n\nFlags:\n -h, --help help for switch\n\nFAIL\nFAIL\tgitlab.com/gitlab-org/cli/internal/commands/stack/switch\t10.581s\nFAIL\n",
"timed_out": false
}
],
"hidden": [
{
"command": "go test ./internal/commands/stack/switch -count=1",
"elapsed_seconds": 10.992131042061374,
"returncode": 1,
"stderr": "",
"stdout": "Error: accepts 1 arg(s), received 0\nUsage:\n switch <stack-name> [flags]\n\nExamples:\nglab stack switch <stack-name>\n\nFlags:\n -h, --help help for switch\n\n--- FAIL: TestSwitchPromptsForStackName (10.05s)\n factory.go:327: ugh: step Expect(\"Choose a stack to switch to:\") failed: ugh: timeout waiting for \"Choose a stack to switch to:\"\n \n Screen:\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n console.go:69: ugh: 2 expectation(s) still pending (0/2 executed)\nError: accepts 1 arg(s), received 0\nUsage:\n switch <stack-name> [flags]\n\nExamples:\nglab stack switch <stack-name>\n\nFlags:\n -h, --help help for switch\n\n--- FAIL: TestSwitchWithoutStackNameRequiresPrompts (0.06s)\n switch_test.go:98: \n \tError Trace:\t/private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-wpjzo2_t/tree/internal/commands/stack/switch/switch_test.go:98\n \tError: \tShould be in error chain:\n \t \texpected: cmdutils.FlagError\n \t \tin chain: \"accepts 1 arg(s), received 0\" (*errors.errorString)\n \tTest: \tTestSwitchWithoutStackNameRequiresPrompts\nError: accepts 1 arg(s), received 0\nUsage:\n switch <stack-name> [flags]\n\nExamples:\nglab stack switch <stack-name>\n\nFlags:\n -h, --help help for switch\n\n--- FAIL: TestSwitchWithoutStackNameRequiresExistingStacks (0.01s)\n switch_test.go:111: \n \tError Trace:\t/private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-wpjzo2_t/tree/internal/commands/stack/switch/switch_test.go:111\n \tError: \tError message not equal:\n \t \texpected: \"switching stacks failed: no stacks found; create one with \\\"glab stack create\\\"\"\n \t \tactual : \"accepts 1 arg(s), received 0\"\n \tTest: \tTestSwitchWithoutStackNameRequiresExistingStacks\nFAIL\nFAIL\tgitlab.com/gitlab-org/cli/internal/commands/stack/switch\t10.539s\nFAIL\n",
"timed_out": false
}
],
"hidden_apply": {
"elapsed_seconds": 0.010227875085547566,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"original": [
{
"command": "go test ./internal/commands/stack/switch -count=1",
"elapsed_seconds": 0.48254866688512266,
"returncode": 0,
"stderr": "",
"stdout": "? \tgitlab.com/gitlab-org/cli/internal/commands/stack/switch\t[no test files]\n",
"timed_out": false
}
],
"reason": "selected tests fail after the gold patch",
"source_apply": {
"elapsed_seconds": 0.009001292055472732,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"valid": false
}
},
{
"commit": "5ac068ce4d57ad6e640d8465f072b5c12f25a027",
"elapsed_seconds": 0.030232541961595416,
"parent": "dd83ea8f95cfb0c3285d752e8f561baa99593f25",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module golang.org/x/term to v0.44.0",
"validation": null
},
{
"commit": "dd83ea8f95cfb0c3285d752e8f561baa99593f25",
"elapsed_seconds": 0.025874624960124493,
"parent": "77642409ba2189b37df71a87ef5f7848115c9345",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module golang.org/x/text to v0.38.0",
"validation": null
},
{
"commit": "77642409ba2189b37df71a87ef5f7848115c9345",
"elapsed_seconds": 0.02539337519556284,
"parent": "30274f6675ed31275c153a92ec6fb455145d2fa7",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module github.com/docker/docker-credential-helpers to v0.9.8",
"validation": null
},
{
"commit": "30274f6675ed31275c153a92ec6fb455145d2fa7",
"elapsed_seconds": 2.0253567080944777,
"parent": "a4c5732a529217dcfaad0e7c63af82ced6e8d382",
"reason": null,
"source_changed_lines": 34,
"source_paths": [
"internal/commands/mcp/serve/server.go"
],
"status": "selected",
"task_id": "TASK_S2_R002_011",
"test_paths": [
"internal/commands/mcp/serve/server_test.go"
],
"title": "add content to structuredContent",
"validation": {
"commands": [
"go test ./internal/commands/mcp/serve -count=1"
],
"elapsed_seconds": 1.990684875054285,
"gold": [
{
"command": "go test ./internal/commands/mcp/serve -count=1",
"elapsed_seconds": 0.6841067501809448,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/mcp/serve\t0.256s\n",
"timed_out": false
}
],
"hidden": [
{
"command": "go test ./internal/commands/mcp/serve -count=1",
"elapsed_seconds": 0.18327024998143315,
"returncode": 1,
"stderr": "# gitlab.com/gitlab-org/cli/internal/commands/mcp/serve [gitlab.com/gitlab-org/cli/internal/commands/mcp/serve.test]\ninternal/commands/mcp/serve/server_test.go:1021:32: server.buildStructuredContent undefined (type *mcpServer has no field or method buildStructuredContent)\n",
"stdout": "FAIL\tgitlab.com/gitlab-org/cli/internal/commands/mcp/serve [build failed]\nFAIL\n",
"timed_out": false
}
],
"hidden_apply": {
"elapsed_seconds": 0.012072291923686862,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"original": [
{
"command": "go test ./internal/commands/mcp/serve -count=1",
"elapsed_seconds": 0.9507780000567436,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/mcp/serve\t0.259s\n",
"timed_out": false
}
],
"reason": null,
"source_apply": {
"elapsed_seconds": 0.010528999846428633,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"valid": true
}
},
{
"commit": "a4c5732a529217dcfaad0e7c63af82ced6e8d382",
"elapsed_seconds": 0.03528225002810359,
"parent": "cf3e89eca0e9f700e9885065e5f3a39ecf3a8044",
"reason": "excluded dependency/format/generated/revert subject",
"source_changed_lines": 16,
"source_paths": [
"cmd/gen-docs/docs.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "docs: move troubleshooting guide to the generated CLI docs page",
"validation": null
},
{
"commit": "cf3e89eca0e9f700e9885065e5f3a39ecf3a8044",
"elapsed_seconds": 0.026733167003840208,
"parent": "9bb960695ecf12e2b8320aac8d9e6da0d6e9801c",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module golang.org/x/sync to v0.21.0",
"validation": null
},
{
"commit": "9bb960695ecf12e2b8320aac8d9e6da0d6e9801c",
"elapsed_seconds": 9.26327829202637,
"parent": "92105c4bb18c8d220c12cbd1caafe31c34c6c91d",
"reason": "selected tests fail after the gold patch",
"source_changed_lines": 56,
"source_paths": [
"internal/git/git.go",
"internal/git/stacked.go",
"internal/git/test_helpers.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [
"internal/git/git_test.go",
"internal/git/stacked_test.go"
],
"title": "share stacks across worktrees",
"validation": {
"commands": [
"go test ./internal/git -count=1"
],
"elapsed_seconds": 9.228201792109758,
"gold": [
{
"command": "go test ./internal/git -count=1",
"elapsed_seconds": 4.52333104214631,
"returncode": 1,
"stderr": "",
"stdout": "--- FAIL: TestGitCommonDir (0.11s)\n --- FAIL: TestGitCommonDir/worktree (0.09s)\n git_test.go:347: \n \tError Trace:\t/private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-yu_xr1zz/tree/internal/git/git_test.go:347\n \tError: \tNot equal: \n \t \texpected: \"/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/TestGitCommonDirworktree2854822706/001/.git\"\n \t \tactual : \"/private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/TestGitCommonDirworktree2854822706/001/.git\"\n \t \t\n \t \tDiff:\n \t \t--- Expected\n \t \t+++ Actual\n \t \t@@ -1 +1 @@\n \t \t-/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/TestGitCommonDirworktree2854822706/001/.git\n \t \t+/private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/TestGitCommonDirworktree2854822706/001/.git\n \tTest: \tTestGitCommonDir/worktree\nFAIL\nFAIL\tgitlab.com/gitlab-org/cli/internal/git\t4.184s\nFAIL\n",
"timed_out": false
}
],
"hidden": [
{
"command": "go test ./internal/git -count=1",
"elapsed_seconds": 0.14667166699655354,
"returncode": 1,
"stderr": "# gitlab.com/gitlab-org/cli/internal/git [gitlab.com/gitlab-org/cli/internal/git.test]\ninternal/git/git_test.go:325:15: undefined: GitCommonDir\ninternal/git/git_test.go:345:15: undefined: GitCommonDir\ninternal/git/stacked_test.go:141:23: undefined: GitCommonDir\ninternal/git/stacked_test.go:358:10: undefined: NewTestRepo\ninternal/git/stacked_test.go:376:20: undefined: GitCommonDir\n",
"stdout": "FAIL\tgitlab.com/gitlab-org/cli/internal/git [build failed]\nFAIL\n",
"timed_out": false
}
],
"hidden_apply": {
"elapsed_seconds": 0.009606916923075914,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"original": [
{
"command": "go test ./internal/git -count=1",
"elapsed_seconds": 4.389327042037621,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/git\t3.977s\n",
"timed_out": false
}
],
"reason": "selected tests fail after the gold patch",
"source_apply": {
"elapsed_seconds": 0.01042891712859273,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"valid": false
}
},
{
"commit": "92105c4bb18c8d220c12cbd1caafe31c34c6c91d",
"elapsed_seconds": 0.029410208109766245,
"parent": "08503d3e4ff5ead5e77b24090fbf1ec2471e9a21",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "compile arm64 windows bianry",
"validation": null
},
{
"commit": "08503d3e4ff5ead5e77b24090fbf1ec2471e9a21",
"elapsed_seconds": 0.03540520905517042,
"parent": "f7656aa438471a86a80d9a564b3c536884a5a167",
"reason": "no eligible unit-test file",
"source_changed_lines": 42,
"source_paths": [
"internal/commands/ci/cancel/job/job.go",
"internal/commands/duo/cli/cli.go",
"internal/commands/issue/create/issue_create.go",
"internal/commands/orbit/local/local.go",
"internal/commands/orbit/setup/setup.go",
"internal/commands/project/prune/prune.go",
"internal/commands/skills/install/install.go",
"internal/commands/skills/update/update.go",
"internal/commands/whatsnew/whatsnew.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "docs: Remove manual (default false) flag annotations",
"validation": null
},
{
"commit": "f7656aa438471a86a80d9a564b3c536884a5a167",
"elapsed_seconds": 0.025659542065113783,
"parent": "16dc78314517faabab8283dfa76aaef445e3c62e",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore: Update MR review instructions YAML",
"validation": null
},
{
"commit": "16dc78314517faabab8283dfa76aaef445e3c62e",
"elapsed_seconds": 12.575434874976054,
"parent": "ccf49b8eb56832c6f83cd39e28959e65bafe3521",
"reason": null,
"source_changed_lines": 16,
"source_paths": [
"internal/commands/stack/save/stack_amend.go"
],
"status": "selected",
"task_id": "TASK_S2_R002_012",
"test_paths": [
"internal/commands/stack/save/stack_amend_test.go"
],
"title": "add --no-verify to 'stack amend' command",
"validation": {
"commands": [
"go test ./internal/commands/stack/save -count=1"
],
"elapsed_seconds": 12.541083666030318,
"gold": [
{
"command": "go test ./internal/commands/stack/save -count=1",
"elapsed_seconds": 4.080337542109191,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/stack/save\t3.685s\n",
"timed_out": false
}
],
"hidden": [
{
"command": "go test ./internal/commands/stack/save -count=1",
"elapsed_seconds": 4.0433505000546575,
"returncode": 1,
"stderr": "",
"stdout": "\n -m, --message string Alias for the description flag.\n\nAmend commit: [mandeepsidhu-cool-test-feature-ff8a5ce9 13d0a8b] amended description\n Date: Sat Jul 18 20:57:44 2026 -0400\n 1 file changed, 0 insertions(+), 0 deletions(-)\n create mode 100644 testfile\n\nError: could not run stack amend: could not save: no changes to save\nUsage:\n amend [flags]\n\nExamples:\n# Amend diff with currently staged changes\nglab stack amend -m \"Fix a function\"\n\n# Add specified file to staged changes and amend diff\nglab stack amend newfile -m \"forgot to add this\"\n\n# Add all tracked files to staged changes and amend diff\nglab stack amend -a -m \"fixed a function in exisiting file\"\n\n# Add all tracked and untracked files to staged changes and amend diff\nglab stack amend . -m \"refactored file into new files\"\n\nFlags:\n -a, --all Automatically stage modified and deleted tracked files.\n -d, --description string A description of the change.\n -h, --help help for amend\n -m, --message string Alias for the description flag.\n\nError: could not run stack amend: error checking for stack: Could not find stack ref for branch: randobranch\nUsage:\n amend [flags]\n\nExamples:\n# Amend diff with currently staged changes\nglab stack amend -m \"Fix a function\"\n\n# Add specified file to staged changes and amend diff\nglab stack amend newfile -m \"forgot to add this\"\n\n# Add all tracked files to staged changes and amend diff\nglab stack amend -a -m \"fixed a function in exisiting file\"\n\n# Add all tracked and untracked files to staged changes and amend diff\nglab stack amend . -m \"refactored file into new files\"\n\nFlags:\n -a, --all Automatically stage modified and deleted tracked files.\n -d, --description string A description of the change.\n -h, --help help for amend\n -m, --message string Alias for the description flag.\n\n--- FAIL: Test_stackAmendCmd (0.87s)\n --- FAIL: Test_stackAmendCmd/amending_regular_files_with_--no-verify (0.14s)\n stack_amend_test.go:126: \n \tError Trace:\t/private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-0c2qs0ga/tree/internal/commands/stack/save/stack_amend_test.go:126\n \tError: \tReceived unexpected error:\n \t \tunknown flag: --no-verify\n \tTest: \tTest_stackAmendCmd/amending_regular_files_with_--no-verify\nError: error adding files: no staged changes. Stage files manually with 'git add', use -a flag to automatically stage tracked files, or specify files explicitly\nUsage:\n save [flags]\n\nExamples:\n# Save currently staged changes as diff with description\nglab stack save -m \"added a function\"\n\n# Add specified file to staged changes and save diff\nglab stack save added_file\n\n# Add all tracked files to staged changes and save diff\nglab stack save -a -m \"added a function to exisiting file\"\n\n# Add all tracked and untracked files to staged changes and save diff\nglab stack save . -m \"added new file\"\n\nFlags:\n -a, --all Automatically stage modified and deleted tracked files.\n -d, --description string Description of the change.\n -h, --help help for save\n -m, --message string Alias for the description flag.\n --no-verify Bypass the pre-commit and commit-msg hooks of git-commit(1).\n\nError: could not save: no changes to save\nUsage:\n save [flags]\n\nExamples:\n# Save currently staged changes as diff with description\nglab stack save -m \"added a function\"\n\n# Add specified file to staged changes and save diff\nglab stack save added_file\n\n# Add all tracked files to staged changes and save diff\nglab stack save -a -m \"added a function to exisiting file\"\n\n# Add all tracked and untracked files to staged changes and save diff\nglab stack save . -m \"added new file\"\n\nFlags:\n -a, --all Automatically stage modified and deleted tracked files.\n -d, --description string Description of the change.\n -h, --help help for save\n -m, --message string Alias for the description flag.\n --no-verify Bypass the pre-commit and commit-msg hooks of git-commit(1).\n\nError: error getting commit message: no commit message provided and no TTY; provide one with the --message flag\nUsage:\n save [flags]\n\nExamples:\n# Save currently staged changes as diff with description\nglab stack save -m \"added a function\"\n\n# Add specified file to staged changes and save diff\nglab stack save added_file\n\n# Add all tracked files to staged changes and save diff\nglab stack save -a -m \"added a function to exisiting file\"\n\n# Add all tracked and untracked files to staged changes and save diff\nglab stack save . -m \"added new file\"\n\nFlags:\n -a, --all Automatically stage modified and deleted tracked files.\n -d, --description string Description of the change.\n -h, --help help for save\n -m, --message string Alias for the description flag.\n --no-verify Bypass the pre-commit and commit-msg hooks of git-commit(1).\n\nError: error adding files: no staged changes after 'git add --update'. Are there any tracked modified files?\nUsage:\n save [flags]\n\nExamples:\n# Save currently staged changes as diff with description\nglab stack save -m \"added a function\"\n\n# Add specified file to staged changes and save diff\nglab stack save added_file\n\n# Add all tracked files to staged changes and save diff\nglab stack save -a -m \"added a function to exisiting file\"\n\n# Add all tracked and untracked files to staged changes and save diff\nglab stack save . -m \"added new file\"\n\nFlags:\n -a, --all Automatically stage modified and deleted tracked files.\n -d, --description string Description of the change.\n -h, --help help for save\n -m, --message string Alias for the description flag.\n --no-verify Bypass the pre-commit and commit-msg hooks of git-commit(1).\n\nFAIL\nFAIL\tgitlab.com/gitlab-org/cli/internal/commands/stack/save\t3.631s\nFAIL\n",
"timed_out": false
}
],
"hidden_apply": {
"elapsed_seconds": 0.008766292128711939,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"original": [
{
"command": "go test ./internal/commands/stack/save -count=1",
"elapsed_seconds": 4.248265625210479,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/stack/save\t3.512s\n",
"timed_out": false
}
],
"reason": null,
"source_apply": {
"elapsed_seconds": 0.009321375051513314,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"valid": true
}
},
{
"commit": "ccf49b8eb56832c6f83cd39e28959e65bafe3521",
"elapsed_seconds": 0.029101416934281588,
"parent": "20880bb3b7bca8a95f66bb4a3d86f9820d2894fe",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module github.com/docker/cli to v29.5.3+incompatible",
"validation": null
},
{
"commit": "20880bb3b7bca8a95f66bb4a3d86f9820d2894fe",
"elapsed_seconds": 2.3587053327355534,
"parent": "b4e26b379dc7ce7feb1030648f086617536f6689",
"reason": null,
"source_changed_lines": 60,
"source_paths": [
"internal/commands/update/check_update.go",
"internal/commands/update/post_upgrade.go",
"internal/commands/update/skill_updates.go"
],
"status": "selected",
"task_id": "TASK_S2_R002_013",
"test_paths": [
"internal/commands/update/check_update_test.go",
"internal/commands/update/skill_updates_test.go"
],
"title": "give post-upgrade and skill nudges breathing room",
"validation": {
"commands": [
"go test ./internal/commands/update -count=1"
],
"elapsed_seconds": 2.3238658749032766,
"gold": [
{
"command": "go test ./internal/commands/update -count=1",
"elapsed_seconds": 0.809225499862805,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/update\t0.330s\n",
"timed_out": false
}
],
"hidden": [
{
"command": "go test ./internal/commands/update -count=1",
"elapsed_seconds": 0.18656162498518825,
"returncode": 1,
"stderr": "# gitlab.com/gitlab-org/cli/internal/commands/update [gitlab.com/gitlab-org/cli/internal/commands/update.test]\ninternal/commands/update/skill_updates_test.go:133:2: undefined: writeSkillUpdateBlock\ninternal/commands/update/skill_updates_test.go:137:2: undefined: writeSkillUpdateBlock\ninternal/commands/update/skill_updates_test.go:144:2: undefined: writeSkillUpdateBlock\ninternal/commands/update/skill_updates_test.go:153:2: undefined: writeSkillUpdateBlock\n",
"stdout": "FAIL\tgitlab.com/gitlab-org/cli/internal/commands/update [build failed]\nFAIL\n",
"timed_out": false
}
],
"hidden_apply": {
"elapsed_seconds": 0.011010375106707215,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"original": [
{
"command": "go test ./internal/commands/update -count=1",
"elapsed_seconds": 1.1563760829158127,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/update\t0.339s\n",
"timed_out": false
}
],
"reason": null,
"source_apply": {
"elapsed_seconds": 0.010480375029146671,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"valid": true
}
},
{
"commit": "b4e26b379dc7ce7feb1030648f086617536f6689",
"elapsed_seconds": 8.261954417219386,
"parent": "b7baa9b20b362fa2be1ca824623f9b8222ca6c2c",
"reason": null,
"source_changed_lines": 12,
"source_paths": [
"internal/commands/stack/save/stack_save.go"
],
"status": "selected",
"task_id": "TASK_S2_R002_014",
"test_paths": [
"internal/commands/stack/save/stack_save_test.go"
],
"title": "add --no-verify to 'stack save' command",
"validation": {
"commands": [
"go test ./internal/commands/stack/save -count=1"
],
"elapsed_seconds": 8.226821542019024,
"gold": [
{
"command": "go test ./internal/commands/stack/save -count=1",
"elapsed_seconds": 3.876930208876729,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/stack/save\t3.483s\n",
"timed_out": false
}
],
"hidden": [
{
"command": "go test ./internal/commands/stack/save -count=1",
"elapsed_seconds": 0.1835116669535637,
"returncode": 1,
"stderr": "# gitlab.com/gitlab-org/cli/internal/commands/stack/save [gitlab.com/gitlab-org/cli/internal/commands/stack/save.test]\ninternal/commands/stack/save/stack_save_test.go:436:40: too many arguments in call to commitFiles\n\thave (string, bool)\n\twant (string)\n",
"stdout": "FAIL\tgitlab.com/gitlab-org/cli/internal/commands/stack/save [build failed]\nFAIL\n",
"timed_out": false
}
],
"hidden_apply": {
"elapsed_seconds": 0.009044416015967727,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"original": [
{
"command": "go test ./internal/commands/stack/save -count=1",
"elapsed_seconds": 3.995628000004217,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/stack/save\t3.259s\n",
"timed_out": false
}
],
"reason": null,
"source_apply": {
"elapsed_seconds": 0.01021216600202024,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"valid": true
}
},
{
"commit": "b7baa9b20b362fa2be1ca824623f9b8222ca6c2c",
"elapsed_seconds": 0.028759625041857362,
"parent": "f9a1060145ba9467ccafa3a274f5dac0194498bb",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "docs: add troubleshooting guide for invalid_client OAuth error",
"validation": null
},
{
"commit": "f9a1060145ba9467ccafa3a274f5dac0194498bb",
"elapsed_seconds": 0.025945999892428517,
"parent": "4e73afd74db6f507cc1c8d0f6f421b8c487dc070",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module gitlab.com/gitlab-org/api/client-go/v2 to v2.36.3",
"validation": null
},
{
"commit": "4e73afd74db6f507cc1c8d0f6f421b8c487dc070",
"elapsed_seconds": 0.025594665901735425,
"parent": "babbb4f0639c94991b93233d10ef6d3320714d3a",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "ci: wire ci/cd inputs to release variables",
"validation": null
},
{
"commit": "babbb4f0639c94991b93233d10ef6d3320714d3a",
"elapsed_seconds": 0.025039165979251266,
"parent": "d6748d0d24a0aebf5188bd33553288a25ecc4841",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(ci): automate weekly release via pipeline schedule",
"validation": null
},
{
"commit": "d6748d0d24a0aebf5188bd33553288a25ecc4841",
"elapsed_seconds": 0.03645583288744092,
"parent": "97f74b12b4ef2d73a2fdb7f558b63b6bd733b383",
"reason": "no eligible unit-test file",
"source_changed_lines": 27,
"source_paths": [
"internal/commands/variable/delete/delete.go",
"internal/commands/variable/get/get.go",
"internal/commands/variable/variable.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "docs(variable): add synopsis and examples to variable commands",
"validation": null
},
{
"commit": "97f74b12b4ef2d73a2fdb7f558b63b6bd733b383",
"elapsed_seconds": 2.105650791199878,
"parent": "5cef87d9b0de63a0596cbefd370411a6e0733ecb",
"reason": null,
"source_changed_lines": 31,
"source_paths": [
"internal/commands/duo/cli/cli.go"
],
"status": "selected",
"task_id": "TASK_S2_R002_015",
"test_paths": [
"internal/commands/duo/cli/cli_test.go"
],
"title": "chore: add support for modern linux-x64 duo cli binary",
"validation": {
"commands": [
"go test ./internal/commands/duo/cli -count=1"
],
"elapsed_seconds": 2.069882916053757,
"gold": [
{
"command": "go test ./internal/commands/duo/cli -count=1",
"elapsed_seconds": 0.6988072500098497,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/duo/cli\t0.296s\n",
"timed_out": false
}
],
"hidden": [
{
"command": "go test ./internal/commands/duo/cli -count=1",
"elapsed_seconds": 0.1798336668871343,
"returncode": 1,
"stderr": "# gitlab.com/gitlab-org/cli/internal/commands/duo/cli [gitlab.com/gitlab-org/cli/internal/commands/duo/cli.test]\ninternal/commands/duo/cli/cli_test.go:79:16: undefined: duoNormalizeArchFor\ninternal/commands/duo/cli/cli_test.go:95:9: undefined: detectLinuxX64ArchVariant\n",
"stdout": "FAIL\tgitlab.com/gitlab-org/cli/internal/commands/duo/cli [build failed]\nFAIL\n",
"timed_out": false
}
],
"hidden_apply": {
"elapsed_seconds": 0.009390416089445353,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"original": [
{
"command": "go test ./internal/commands/duo/cli -count=1",
"elapsed_seconds": 1.0219393749721348,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/duo/cli\t0.282s\n",
"timed_out": false
}
],
"reason": null,
"source_apply": {
"elapsed_seconds": 0.010161041980609298,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"valid": true
}
},
{
"commit": "5cef87d9b0de63a0596cbefd370411a6e0733ecb",
"elapsed_seconds": 0.02678316691890359,
"parent": "5bc820e511e8f701cf89e604ac9857b22a37a308",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): bump go to v1.26.4",
"validation": null
},
{
"commit": "5bc820e511e8f701cf89e604ac9857b22a37a308",
"elapsed_seconds": 0.025840749964118004,
"parent": "c0e1de231b095a1af93986401787a9a1ffb9b81e",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module gitlab.com/gitlab-org/api/client-go/v2 to v2.36.2",
"validation": null
},
{
"commit": "c0e1de231b095a1af93986401787a9a1ffb9b81e",
"elapsed_seconds": 0.03428116696886718,
"parent": "597e43d4abd2fa9b7efa8b700c9f4ce55803f47d",
"reason": "no eligible unit-test file",
"source_changed_lines": 9,
"source_paths": [
"internal/commands/api/api.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "docs(api): add GLAB_DEBUG_HTTP example for debugging requests",
"validation": null
},
{
"commit": "597e43d4abd2fa9b7efa8b700c9f4ce55803f47d",
"elapsed_seconds": 0.025388542097061872,
"parent": "ccc1b12036a943bc9b860488cfdc4d19fc11964b",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module github.com/docker/cli to v29.5.2+incompatible",
"validation": null
},
{
"commit": "ccc1b12036a943bc9b860488cfdc4d19fc11964b",
"elapsed_seconds": 0.026643624994903803,
"parent": "ac28d4712285182b9b94c8ec6fe137afc47f93f9",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module charm.land/bubbletea/v2 to v2.0.7",
"validation": null
},
{
"commit": "ac28d4712285182b9b94c8ec6fe137afc47f93f9",
"elapsed_seconds": 6.61131229205057,
"parent": "c8cfaa49bfd125a112ec8ef2aa095fccd1fe2c70",
"reason": null,
"source_changed_lines": 343,
"source_paths": [
"internal/commands/mr/checkout/mr_checkout.go"
],
"status": "selected",
"task_id": "TASK_S2_R002_016",
"test_paths": [
"internal/commands/mr/checkout/mr_checkout_integration_test.go",
"internal/commands/mr/checkout/mr_checkout_test.go"
],
"title": "Handle `glab mr checkout` failure when there are non fast-forwarding conflicts",
"validation": {
"commands": [
"go test ./internal/commands/mr/checkout -count=1"
],
"elapsed_seconds": 6.576962999999523,
"gold": [
{
"command": "go test ./internal/commands/mr/checkout -count=1",
"elapsed_seconds": 0.7924991250038147,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/mr/checkout\t0.299s\n",
"timed_out": false
}
],
"hidden": [
{
"command": "go test ./internal/commands/mr/checkout -count=1",
"elapsed_seconds": 0.1920158751308918,
"returncode": 1,
"stderr": "# gitlab.com/gitlab-org/cli/internal/commands/mr/checkout [gitlab.com/gitlab-org/cli/internal/commands/mr/checkout.test]\ninternal/commands/mr/checkout/mr_checkout_test.go:644:10: undefined: options\n",
"stdout": "FAIL\tgitlab.com/gitlab-org/cli/internal/commands/mr/checkout [build failed]\nFAIL\n",
"timed_out": false
}
],
"hidden_apply": {
"elapsed_seconds": 0.010905375005677342,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"original": [
{
"command": "go test ./internal/commands/mr/checkout -count=1",
"elapsed_seconds": 5.420511124888435,
"returncode": 0,
"stderr": "go: downloading gitlab.com/gitlab-org/api/client-go/v2 v2.36.1\ngo: downloading charm.land/bubbletea/v2 v2.0.6\ngo: downloading github.com/charmbracelet/ultraviolet v0.0.0-20260416155717-489999b90468\n",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/mr/checkout\t0.289s\n",
"timed_out": false
}
],
"reason": null,
"source_apply": {
"elapsed_seconds": 0.010312875034287572,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"valid": true
}
},
{
"commit": "c8cfaa49bfd125a112ec8ef2aa095fccd1fe2c70",
"elapsed_seconds": 0.03175133280456066,
"parent": "89610f06d96fc409bc2757ce7d03ad623e483b3d",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module github.com/docker/cli to v29.5.1+incompatible",
"validation": null
},
{
"commit": "89610f06d96fc409bc2757ce7d03ad623e483b3d",
"elapsed_seconds": 0.02682825014926493,
"parent": "2c780834db5cf63c74044c3c9cd147e34f46828e",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update dependency @commitlint/cli to ^21.0.2",
"validation": null
},
{
"commit": "2c780834db5cf63c74044c3c9cd147e34f46828e",
"elapsed_seconds": 0.029218291863799095,
"parent": "aa374e643b40c22879d39f4085dc4b9ea7dc10e2",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update dependency @commitlint/lint to ^21.0.2",
"validation": null
},
{
"commit": "aa374e643b40c22879d39f4085dc4b9ea7dc10e2",
"elapsed_seconds": 0.030764499912038445,
"parent": "aaef7d10fb3927fd70343dc1453397dd7324cee3",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module github.com/mattn/go-runewidth to v0.0.24",
"validation": null
},
{
"commit": "aaef7d10fb3927fd70343dc1453397dd7324cee3",
"elapsed_seconds": 0.029786166036501527,
"parent": "e70f894c0d270de502a954f72655bd6c6b8cbdb8",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module gitlab.com/gitlab-org/api/client-go/v2 to v2.36.1",
"validation": null
},
{
"commit": "e70f894c0d270de502a954f72655bd6c6b8cbdb8",
"elapsed_seconds": 0.028311540838330984,
"parent": "b5a548b340b302bbe0b8828b103a9ef0433d3201",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update module github.com/mattn/go-colorable to v0.1.15",
"validation": null
},
{
"commit": "b5a548b340b302bbe0b8828b103a9ef0433d3201",
"elapsed_seconds": 6.7248395420610905,
"parent": "4d31bf29f54be6a2bad1a80d99417e4779917a51",
"reason": null,
"source_changed_lines": 29,
"source_paths": [
"internal/binarymgr/manager.go"
],
"status": "selected",
"task_id": "TASK_S2_R002_017",
"test_paths": [
"internal/binarymgr/manager_test.go"
],
"title": "sort packages by semver client-side",
"validation": {
"commands": [
"go test ./internal/binarymgr -count=1"
],
"elapsed_seconds": 6.688947916962206,
"gold": [
{
"command": "go test ./internal/binarymgr -count=1",
"elapsed_seconds": 0.7716838750056922,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/binarymgr\t0.288s\n",
"timed_out": false
}
],
"hidden": [
{
"command": "go test ./internal/binarymgr -count=1",
"elapsed_seconds": 0.7831153331790119,
"returncode": 1,
"stderr": "",
"stdout": "treated_as_available (0.00s)\n manager.go:295: Unexpected call to *testing.MockPackagesServiceInterface.ListProjectPackages([12345 &{{ 1 0 } 0x17a0ac808390 0x17a0ac8083a0 0x17a0ac808380 0x17a0ac1223e8 <nil> <nil> <nil>} 0x1050f9e50]) at /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-agyokh2x/tree/internal/binarymgr/manager.go:295 because: \n expected call at /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-agyokh2x/tree/internal/binarymgr/manager_test.go:199 has the wrong number of arguments. Got: 3, want: 4\n controller.go:97: missing call(s) to *testing.MockPackagesServiceInterface.ListProjectPackages(is equal to 12345 (string), is anything, is anything, is anything) /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-agyokh2x/tree/internal/binarymgr/manager_test.go:199\n controller.go:97: aborting test due to missing call(s)\n--- FAIL: TestManager_fetchLatestPackage (0.00s)\n --- FAIL: TestManager_fetchLatestPackage/picks_highest_semver,_not_lexicographic_(created_at_order) (0.00s)\n manager.go:295: Unexpected call to *testing.MockPackagesServiceInterface.ListProjectPackages([12345 &{{ 1 0 } 0x17a0ac88a1f0 0x17a0ac88a200 0x17a0ac88a1e0 0x17a0ac816028 <nil> <nil> <nil>} 0x1050f9e50]) at /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-agyokh2x/tree/internal/binarymgr/manager.go:295 because: \n expected call at /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-agyokh2x/tree/internal/binarymgr/manager_test.go:277 has the wrong number of arguments. Got: 3, want: 4\n controller.go:97: missing call(s) to *testing.MockPackagesServiceInterface.ListProjectPackages(is equal to 12345 (string), is anything, is anything, is anything) /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-agyokh2x/tree/internal/binarymgr/manager_test.go:277\n controller.go:97: aborting test due to missing call(s)\n --- FAIL: TestManager_fetchLatestPackage/errors_when_no_version_parses (0.00s)\n manager.go:295: Unexpected call to *testing.MockPackagesServiceInterface.ListProjectPackages([12345 &{{ 1 0 } 0x17a0ac88a420 0x17a0ac88a430 0x17a0ac88a410 0x17a0ac816208 <nil> <nil> <nil>} 0x1050f9e50]) at /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-agyokh2x/tree/internal/binarymgr/manager.go:295 because: \n expected call at /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-agyokh2x/tree/internal/binarymgr/manager_test.go:277 has the wrong number of arguments. Got: 3, want: 4\n controller.go:97: missing call(s) to *testing.MockPackagesServiceInterface.ListProjectPackages(is equal to 12345 (string), is anything, is anything, is anything) /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-agyokh2x/tree/internal/binarymgr/manager_test.go:277\n controller.go:97: aborting test due to missing call(s)\n --- FAIL: TestManager_fetchLatestPackage/errors_when_registry_is_empty (0.00s)\n manager.go:295: Unexpected call to *testing.MockPackagesServiceInterface.ListProjectPackages([12345 &{{ 1 0 } 0x17a0ac9000d0 0x17a0ac9000e0 0x17a0ac9000c0 0x17a0ac6122a8 <nil> <nil> <nil>} 0x1050f9e50]) at /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-agyokh2x/tree/internal/binarymgr/manager.go:295 because: \n expected call at /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-agyokh2x/tree/internal/binarymgr/manager_test.go:277 has the wrong number of arguments. Got: 3, want: 4\n controller.go:97: missing call(s) to *testing.MockPackagesServiceInterface.ListProjectPackages(is equal to 12345 (string), is anything, is anything, is anything) /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-agyokh2x/tree/internal/binarymgr/manager_test.go:277\n controller.go:97: aborting test due to missing call(s)\n --- FAIL: TestManager_fetchLatestPackage/picks_highest_semver_regardless_of_position (0.00s)\n manager.go:295: Unexpected call to *testing.MockPackagesServiceInterface.ListProjectPackages([12345 &{{ 1 0 } 0x17a0ac88a650 0x17a0ac88a660 0x17a0ac88a640 0x17a0ac8162a8 <nil> <nil> <nil>} 0x1050f9e50]) at /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-agyokh2x/tree/internal/binarymgr/manager.go:295 because: \n expected call at /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-agyokh2x/tree/internal/binarymgr/manager_test.go:277 has the wrong number of arguments. Got: 3, want: 4\n controller.go:97: missing call(s) to *testing.MockPackagesServiceInterface.ListProjectPackages(is equal to 12345 (string), is anything, is anything, is anything) /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-agyokh2x/tree/internal/binarymgr/manager_test.go:277\n controller.go:97: aborting test due to missing call(s)\n --- FAIL: TestManager_fetchLatestPackage/skips_unparseable_versions (0.00s)\n manager.go:295: Unexpected call to *testing.MockPackagesServiceInterface.ListProjectPackages([12345 &{{ 1 0 } 0x17a0ac7f43f0 0x17a0ac7f4400 0x17a0ac7f43e0 0x17a0ac572848 <nil> <nil> <nil>} 0x1050f9e50]) at /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-agyokh2x/tree/internal/binarymgr/manager.go:295 because: \n expected call at /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-agyokh2x/tree/internal/binarymgr/manager_test.go:277 has the wrong number of arguments. Got: 3, want: 4\n controller.go:97: missing call(s) to *testing.MockPackagesServiceInterface.ListProjectPackages(is equal to 12345 (string), is anything, is anything, is anything) /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-agyokh2x/tree/internal/binarymgr/manager_test.go:277\n controller.go:97: aborting test due to missing call(s)\nFAIL\nFAIL\tgitlab.com/gitlab-org/cli/internal/binarymgr\t0.294s\nFAIL\n",
"timed_out": false
}
],
"hidden_apply": {
"elapsed_seconds": 0.011087874881923199,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"original": [
{
"command": "go test ./internal/binarymgr -count=1",
"elapsed_seconds": 4.959483791841194,
"returncode": 0,
"stderr": "go: downloading gitlab.com/gitlab-org/api/client-go/v2 v2.36.0\ngo: downloading github.com/mattn/go-colorable v0.1.14\ngo: downloading github.com/mattn/go-runewidth v0.0.23\n",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/binarymgr\t0.286s\n",
"timed_out": false
}
],
"reason": null,
"source_apply": {
"elapsed_seconds": 0.010794749949127436,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"valid": true
}
},
{
"commit": "4d31bf29f54be6a2bad1a80d99417e4779917a51",
"elapsed_seconds": 0.030175207881256938,
"parent": "7d18d5ba66d155670d6fa5a7366b28e957858a93",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update dependency @commitlint/read to ^21.0.2",
"validation": null
},
{
"commit": "7d18d5ba66d155670d6fa5a7366b28e957858a93",
"elapsed_seconds": 0.03484366601333022,
"parent": "34120db23f806e75c79358dd517714a223580e6a",
"reason": "no eligible unit-test file",
"source_changed_lines": 22,
"source_paths": [
"internal/commands/root.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "docs: update env vars table to use GLAB_ prefixed names",
"validation": null
},
{
"commit": "34120db23f806e75c79358dd517714a223580e6a",
"elapsed_seconds": 0.025770124979317188,
"parent": "94acd5bb06d9929afd6b9d83b54b63c23b77e4a7",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "chore(deps): update dependency @commitlint/config-conventional to ^21.0.2",
"validation": null
},
{
"commit": "94acd5bb06d9929afd6b9d83b54b63c23b77e4a7",
"elapsed_seconds": 0.03492825012654066,
"parent": "1db49442e1ff1227283bfcd52cab65a397a68bb9",
"reason": "no eligible unit-test file",
"source_changed_lines": 5,
"source_paths": [
"internal/commands/root.go",
"internal/iostreams/iostreams.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "docs: document GLAB_NO_PROMPT and mark NO_PROMPT deprecated",
"validation": null
},
{
"commit": "1db49442e1ff1227283bfcd52cab65a397a68bb9",
"elapsed_seconds": 2.145354875130579,
"parent": "11860fc055026fa1e14b10111b9410d51a2534ac",
"reason": null,
"source_changed_lines": 31,
"source_paths": [
"internal/commands/api/api.go"
],
"status": "selected",
"task_id": "TASK_S2_R002_018",
"test_paths": [
"internal/commands/api/api_test.go"
],
"title": "URL-encode magic placeholder substitutions",
"validation": {
"commands": [
"go test ./internal/commands/api -count=1"
],
"elapsed_seconds": 2.110142291057855,
"gold": [
{
"command": "go test ./internal/commands/api -count=1",
"elapsed_seconds": 0.7243207499850541,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/api\t0.292s\n",
"timed_out": false
}
],
"hidden": [
{
"command": "go test ./internal/commands/api -count=1",
"elapsed_seconds": 0.18256262503564358,
"returncode": 1,
"stderr": "# gitlab.com/gitlab-org/cli/internal/commands/api [gitlab.com/gitlab-org/cli/internal/commands/api.test]\ninternal/commands/api/api_test.go:1373:62: too many arguments in call to fillPlaceholders\n\thave (string, *options, bool)\n\twant (string, *options)\n",
"stdout": "FAIL\tgitlab.com/gitlab-org/cli/internal/commands/api [build failed]\nFAIL\n",
"timed_out": false
}
],
"hidden_apply": {
"elapsed_seconds": 0.010136709082871675,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"original": [
{
"command": "go test ./internal/commands/api -count=1",
"elapsed_seconds": 1.0302820419892669,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/api\t0.274s\n",
"timed_out": false
}
],
"reason": null,
"source_apply": {
"elapsed_seconds": 0.01031216699630022,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"valid": true
}
},
{
"commit": "11860fc055026fa1e14b10111b9410d51a2534ac",
"elapsed_seconds": 0.03760195802897215,
"parent": "41ff6d3e93bf3ad8c58091dd2bedbccd7e9927b2",
"reason": "production file count exceeds 8",
"source_changed_lines": 354,
"source_paths": [
"internal/cmdutils/factory.go",
"internal/cmdutils/remote_resolver.go",
"internal/cmdutils/url_parser.go",
"internal/commands/issuable/close/issuable_close.go",
"internal/commands/issuable/note/issuable_note_create.go",
"internal/commands/issuable/reopen/issuable_reopen.go",
"internal/commands/issuable/subscribe/issuable_subscribe.go",
"internal/commands/issuable/unsubscribe/issuable_unsubscribe.go",
"internal/commands/issuable/view/issuable_view.go",
"internal/commands/issue/delete/issue_delete.go",
"internal/commands/issue/issueutils/utils.go",
"internal/commands/issue/update/issue_update.go",
"internal/commands/mr/create/mr_create.go",
"internal/commands/mr/mrutils/mrutils.go",
"internal/commands/project/archive/repo_archive.go",
"internal/commands/project/create/project_create.go",
"internal/commands/project/fork/fork.go",
"internal/commands/project/mirror/project_mirror.go",
"internal/commands/project/remote/add/add.go",
"internal/commands/project/transfer/project_transfer.go",
"internal/commands/project/update/update.go",
"internal/commands/project/view/project_view.go",
"internal/config/alias_config.go",
"internal/config/config.go",
"internal/config/config_file.go",
"internal/config/file.go",
"internal/config/local_config.go",
"internal/config/testing.go",
"internal/glrepo/remote.go",
"internal/glrepo/repo.go",
"internal/glrepo/resolver.go",
"internal/testing/cmdtest/factory.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [
"cmd/glab/telemetry_test.go",
"internal/cmdutils/flag_test.go",
"internal/cmdutils/url_parser_test.go",
"internal/commands/alias/delete/alias_delete_test.go",
"internal/commands/alias/list/alias_list_test.go",
"internal/commands/alias/set/alias_set_test.go",
"internal/commands/api/http_test.go",
"internal/commands/auth/logout/logout_test.go",
"internal/commands/auth/status/status_test.go",
"internal/commands/issue/issueutils/utils_test.go",
"internal/commands/stack/infer/stack_infer_test.go",
"internal/commands/stack/save/stack_save_test.go",
"internal/commands/update/check_update_test.go",
"internal/commands/update/post_upgrade_test.go",
"internal/commands/update/skill_updates_test.go",
"internal/commands/whatsnew/whatsnew_test.go",
"internal/config/config_file_test.go",
"internal/config/config_test.go",
"internal/config/local_config_test.go",
"internal/config/persist_test.go",
"internal/config/read_test.go",
"internal/glrepo/inject_test.go",
"internal/glrepo/remote_test.go",
"internal/glrepo/repo_test.go",
"internal/glrepo/resolver_test.go"
],
"title": "remove mutable globals",
"validation": null
},
{
"commit": "41ff6d3e93bf3ad8c58091dd2bedbccd7e9927b2",
"elapsed_seconds": 0.03529633395373821,
"parent": "24ed5b0e935640f75719200cf7822d6c6f3be842",
"reason": "production changed lines exceed 400",
"source_changed_lines": 429,
"source_paths": [
"internal/commands/project/prune/prune.go",
"internal/commands/project/repo.go",
"internal/git/git.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [
"internal/commands/project/prune/prune_test.go"
],
"title": "add prune command to delete merged local branches",
"validation": null
},
{
"commit": "24ed5b0e935640f75719200cf7822d6c6f3be842",
"elapsed_seconds": 2.258124084211886,
"parent": "a26d600aadbd80fe54cbcefb72cd979c3040544c",
"reason": null,
"source_changed_lines": 18,
"source_paths": [
"internal/api/client.go"
],
"status": "selected",
"task_id": "TASK_S2_R002_019",
"test_paths": [
"internal/api/client_test.go"
],
"title": "forward DUO_WORKFLOW_WORKFLOW_ID as X-Gitlab-Duo-Workflow-Id header",
"validation": {
"commands": [
"go test ./internal/api -count=1"
],
"elapsed_seconds": 2.2236895421519876,
"gold": [
{
"command": "go test ./internal/api -count=1",
"elapsed_seconds": 0.6344692090060562,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/api\t0.274s\n",
"timed_out": false
}
],
"hidden": [
{
"command": "go test ./internal/api -count=1",
"elapsed_seconds": 0.6270343330688775,
"returncode": 1,
"stderr": "",
"stdout": "--- FAIL: TestNewClientFromConfig_DuoWorkflowID (0.00s)\n --- FAIL: TestNewClientFromConfig_DuoWorkflowID/header_injected_when_env_var_is_set (0.00s)\n client_test.go:218: \n \tError Trace:\t/private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-bx0swmae/tree/internal/api/client_test.go:218\n \tError: \tNot equal: \n \t \texpected: \"workflow-id-xyz\"\n \t \tactual : \"\"\n \t \t\n \t \tDiff:\n \t \t--- Expected\n \t \t+++ Actual\n \t \t@@ -1 +1 @@\n \t \t-workflow-id-xyz\n \t \t+\n \tTest: \tTestNewClientFromConfig_DuoWorkflowID/header_injected_when_env_var_is_set\n --- FAIL: TestNewClientFromConfig_DuoWorkflowID/env_var_overrides_X-Gitlab-Duo-Workflow-Id_from_config_headers (0.00s)\n client_test.go:248: \n \tError Trace:\t/private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-bx0swmae/tree/internal/api/client_test.go:248\n \tError: \tNot equal: \n \t \texpected: \"from-env\"\n \t \tactual : \"from-config\"\n \t \t\n \t \tDiff:\n \t \t--- Expected\n \t \t+++ Actual\n \t \t@@ -1 +1 @@\n \t \t-from-env\n \t \t+from-config\n \tTest: \tTestNewClientFromConfig_DuoWorkflowID/env_var_overrides_X-Gitlab-Duo-Workflow-Id_from_config_headers\nFAIL\nFAIL\tgitlab.com/gitlab-org/cli/internal/api\t0.267s\nFAIL\n",
"timed_out": false
}
],
"hidden_apply": {
"elapsed_seconds": 0.011617915937677026,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"original": [
{
"command": "go test ./internal/api -count=1",
"elapsed_seconds": 0.7873496250249445,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/api\t0.348s\n",
"timed_out": false
}
],
"reason": null,
"source_apply": {
"elapsed_seconds": 0.01212345901876688,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"valid": true
}
},
{
"commit": "a26d600aadbd80fe54cbcefb72cd979c3040544c",
"elapsed_seconds": 0.026936042122542858,
"parent": "10ba2b2737c534b4cbc6450b9ebb7c0cc81e4b48",
"reason": "no eligible production source file",
"source_changed_lines": 0,
"source_paths": [],
"status": "rejected",
"task_id": null,
"test_paths": [],
"title": "docs: update README environment variables",
"validation": null
},
{
"commit": "10ba2b2737c534b4cbc6450b9ebb7c0cc81e4b48",
"elapsed_seconds": 0.03548149997368455,
"parent": "100b4c24245ab0145b651da6af83b5c909d0fb34",
"reason": "production changed lines exceed 400",
"source_changed_lines": 508,
"source_paths": [
"internal/commands/skills/installed/installed.go",
"internal/commands/skills/skill/skill.go",
"internal/commands/skills/skills.go",
"internal/commands/skills/update/update.go",
"internal/commands/update/check_update.go",
"internal/commands/update/post_upgrade.go",
"internal/commands/update/skill_updates.go",
"internal/config/schema.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [
"internal/commands/skills/installed/installed_test.go",
"internal/commands/skills/update/update_test.go",
"internal/commands/update/check_update_test.go",
"internal/commands/update/post_upgrade_test.go",
"internal/commands/update/skill_updates_test.go"
],
"title": "notify when installed skills have updates",
"validation": null
},
{
"commit": "100b4c24245ab0145b651da6af83b5c909d0fb34",
"elapsed_seconds": 1.2932726668659598,
"parent": "7d949b53dbea28b836df31971766b01a60c2651c",
"reason": "selected public tests fail at base",
"source_changed_lines": 355,
"source_paths": [
"cmd/glab/main.go",
"internal/commands/root.go",
"internal/commands/update/check_update.go",
"internal/commands/update/post_upgrade.go",
"internal/commands/whatsnew/whatsnew.go",
"internal/config/schema.go"
],
"status": "rejected",
"task_id": null,
"test_paths": [
"internal/commands/update/post_upgrade_test.go",
"internal/commands/whatsnew/whatsnew_test.go"
],
"title": "add command and post-upgrade banner",
"validation": {
"commands": [
"go test ./internal/commands/update -count=1",
"go test ./internal/commands/whatsnew -count=1"
],
"elapsed_seconds": 1.258482625009492,
"original": [
{
"command": "go test ./internal/commands/update -count=1",
"elapsed_seconds": 1.1012010828126222,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/commands/update\t0.291s\n",
"timed_out": false
},
{
"command": "go test ./internal/commands/whatsnew -count=1",
"elapsed_seconds": 0.007054666057229042,
"returncode": 1,
"stderr": "# ./internal/commands/whatsnew\nstat /private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-ksu19d4c/tree/internal/commands/whatsnew: directory not found\n",
"stdout": "FAIL\t./internal/commands/whatsnew [setup failed]\nFAIL\n",
"timed_out": false
}
],
"reason": "selected public tests fail at base",
"valid": false
}
},
{
"commit": "7d949b53dbea28b836df31971766b01a60c2651c",
"elapsed_seconds": 2.1700538750737906,
"parent": "73327f4c90f0d3308a468ea736de0034ad9c22ec",
"reason": null,
"source_changed_lines": 16,
"source_paths": [
"internal/api/client.go"
],
"status": "selected",
"task_id": "TASK_S2_R002_020",
"test_paths": [
"internal/api/client_test.go"
],
"title": "forward GITLAB_DUO_SESSION_ID as X-Gitlab-Duo-Session-Id header",
"validation": {
"commands": [
"go test ./internal/api -count=1"
],
"elapsed_seconds": 2.1291165840812027,
"gold": [
{
"command": "go test ./internal/api -count=1",
"elapsed_seconds": 0.6214074171148241,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/api\t0.264s\n",
"timed_out": false
}
],
"hidden": [
{
"command": "go test ./internal/api -count=1",
"elapsed_seconds": 0.6231880828272551,
"returncode": 1,
"stderr": "",
"stdout": "--- FAIL: TestNewClientFromConfig_DuoSessionID (0.00s)\n --- FAIL: TestNewClientFromConfig_DuoSessionID/header_injected_when_env_var_is_set (0.00s)\n client_test.go:218: \n \tError Trace:\t/private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-6vhdgzy6/tree/internal/api/client_test.go:218\n \tError: \tNot equal: \n \t \texpected: \"duo-session-abc123\"\n \t \tactual : \"\"\n \t \t\n \t \tDiff:\n \t \t--- Expected\n \t \t+++ Actual\n \t \t@@ -1 +1 @@\n \t \t-duo-session-abc123\n \t \t+\n \tTest: \tTestNewClientFromConfig_DuoSessionID/header_injected_when_env_var_is_set\n --- FAIL: TestNewClientFromConfig_DuoSessionID/env_var_overrides_X-Gitlab-Duo-Session-Id_from_config_headers (0.00s)\n client_test.go:248: \n \tError Trace:\t/private/var/folders/mv/1101q6r16619mvm7kc7f3lt80000gn/T/study2-r002-6vhdgzy6/tree/internal/api/client_test.go:248\n \tError: \tNot equal: \n \t \texpected: \"from-env\"\n \t \tactual : \"from-config\"\n \t \t\n \t \tDiff:\n \t \t--- Expected\n \t \t+++ Actual\n \t \t@@ -1 +1 @@\n \t \t-from-env\n \t \t+from-config\n \tTest: \tTestNewClientFromConfig_DuoSessionID/env_var_overrides_X-Gitlab-Duo-Session-Id_from_config_headers\nFAIL\nFAIL\tgitlab.com/gitlab-org/cli/internal/api\t0.268s\nFAIL\n",
"timed_out": false
}
],
"hidden_apply": {
"elapsed_seconds": 0.012615124927833676,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"original": [
{
"command": "go test ./internal/api -count=1",
"elapsed_seconds": 0.7075307499617338,
"returncode": 0,
"stderr": "",
"stdout": "ok \tgitlab.com/gitlab-org/cli/internal/api\t0.269s\n",
"timed_out": false
}
],
"reason": null,
"source_apply": {
"elapsed_seconds": 0.012660749955102801,
"returncode": 0,
"stderr": "",
"stdout": ""
},
"valid": true
}
}
],
"complete": true,
"repository": {
"language": "go",
"name": "gitlab_cli",
"path": "/Users/mandeepsidhu/Desktop/code/pending-work-research/agent-harness/data/repos/gitlab-cli",
"pinned_head": "757294c01143360b466a70daf3fbef869fc3a41b",
"repository_id": "R002",
"repository_url": "https://gitlab.com/gitlab-org/cli.git"
},
"schema_version": 1,
"selected_count": 20,
"selected_task_ids": [
"TASK_S2_R002_001",
"TASK_S2_R002_002",
"TASK_S2_R002_003",
"TASK_S2_R002_004",
"TASK_S2_R002_005",
"TASK_S2_R002_006",
"TASK_S2_R002_007",
"TASK_S2_R002_008",
"TASK_S2_R002_009",
"TASK_S2_R002_010",
"TASK_S2_R002_011",
"TASK_S2_R002_012",
"TASK_S2_R002_013",
"TASK_S2_R002_014",
"TASK_S2_R002_015",
"TASK_S2_R002_016",
"TASK_S2_R002_017",
"TASK_S2_R002_018",
"TASK_S2_R002_019",
"TASK_S2_R002_020"
],
"selection_policy": {
"max_source_changed_lines": 400,
"max_source_files": 8,
"max_test_files": 8,
"since": "2023-01-01",
"target": 20,
"test_timeout_seconds": 240
}
}
|