diff options
author | danielhanrahan <daniel.hanrahan@est.tech> | 2024-10-26 03:18:11 +0100 |
---|---|---|
committer | danielhanrahan <daniel.hanrahan@est.tech> | 2024-10-29 09:16:51 +0000 |
commit | 77e69cd8098459423d4c2e085e64e2f6d0e8e564 (patch) | |
tree | 7b4deeb07838c18865efc7e8f4337b41b5a05c4e | |
parent | eefb5b3de6e35615ac010805ba4b2e54ec6c5f11 (diff) |
[k6] Increase timeouts after DMI stub changes
This commit changes k6 setup and teardown timeouts to 20 minutes.
This fixes current test failures due to time-outs.
Issue-ID: CPS-2410
Signed-off-by: danielhanrahan <daniel.hanrahan@est.tech>
Change-Id: Ifdbf26ed1669cdb3a2fc9afb551308757511281b
-rw-r--r-- | k6-tests/ncmp/ncmp-kpi.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/k6-tests/ncmp/ncmp-kpi.js b/k6-tests/ncmp/ncmp-kpi.js index a8a6a09d95..53f7629cac 100644 --- a/k6-tests/ncmp/ncmp-kpi.js +++ b/k6-tests/ncmp/ncmp-kpi.js @@ -58,8 +58,8 @@ const DURATION = '15m'; const LEGACY_BATCH_THROUGHPUT_TEST_START_TIME = '15m30s'; export const options = { - setupTimeout: '30m', - teardownTimeout: '10m', + setupTimeout: '20m', + teardownTimeout: '20m', scenarios: { passthrough_read_scenario: { executor: 'constant-vus', |