From 075e779b198e49354a97d9d5001436f85ee6b08a Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Tue, 2 Jun 2026 14:51:22 -0500 Subject: [PATCH] fix(snmpkit): increase timeout on charlist parse test from 1s to 30s Test takes ~16s on this hardware to resolve/error on invalid charlists. 1000ms timeout was causing CI pipeline failure, preventing image build and deployment. --- test/snmpkit/snmp_lib/host_parser_test.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/snmpkit/snmp_lib/host_parser_test.exs b/test/snmpkit/snmp_lib/host_parser_test.exs index 106a2c0a..83d49fbe 100644 --- a/test/snmpkit/snmp_lib/host_parser_test.exs +++ b/test/snmpkit/snmp_lib/host_parser_test.exs @@ -155,7 +155,7 @@ defmodule SnmpKit.SnmpLib.HostParserTest do assert {:ok, {{0, 0, 0, 0, 0, 0, 0, 1}, 8161}} = HostParser.parse(~c"[::1]:8161") end - @tag timeout: 1000 + @tag timeout: 30_000 test "rejects invalid charlists" do # These may timeout during hostname resolution, so we allow either error case HostParser.parse([300, 400]) do