소스 검색

backoff config is required for nextest (#5251)

backoff config is required

Co-authored-by: Alex Pyattaev <alex.pyattaev@anza.xyz>
Alex Pyattaev 8 달 전
부모
커밋
163dc65c00
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      nextest.toml

+ 1 - 1
nextest.toml

@@ -4,7 +4,7 @@ dir = "target/nextest"
 [profile.ci]
 failure-output = "immediate-final"
 slow-timeout = { period = "60s", terminate-after = 1 }
-retries = { count = 3 }
+retries = { backoff = "fixed", count = 3, delay = "1s" }
 
 [profile.ci.junit]
 path = "junit.xml"