瀏覽代碼

esp_eth: pytest_esp_eth CI timeout hotfix

Ondrej Kosta 3 年之前
父節點
當前提交
08f421a091
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      components/esp_eth/test_apps/pytest_esp_eth.py

+ 3 - 1
components/esp_eth/test_apps/pytest_esp_eth.py

@@ -133,7 +133,9 @@ def actual_test(dut: Dut) -> None:
             recv_resp_poke(rx_i)
     finally:
         pipe_send.send(0)
-        tx_proc.join()
+        tx_proc.join(5)
+        if tx_proc.exitcode is None:
+            tx_proc.terminate()
     dut.expect_unity_test_output()