From 04fc06ff0e91f2e191a4a99a434694865ad16d7e Mon Sep 17 00:00:00 2001 From: fabiante Date: Fri, 15 Sep 2023 09:45:44 +0200 Subject: [PATCH] Increase duration of load tests to allow stable metrics collection --- tests/specs/load.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/specs/load.go b/tests/specs/load.go index 0bfc1b7..b617446 100644 --- a/tests/specs/load.go +++ b/tests/specs/load.go @@ -27,32 +27,32 @@ func TestLoad(t *testing.T, api dsl.API) { { CreateAgents: 1, CreateInterval: 50 * time.Millisecond, - Duration: 3 * time.Second, + Duration: 10 * time.Second, }, { CreateAgents: 2, CreateInterval: 50 * time.Millisecond, - Duration: 3 * time.Second, + Duration: 10 * time.Second, }, { CreateAgents: 5, CreateInterval: 50 * time.Millisecond, - Duration: 3 * time.Second, + Duration: 10 * time.Second, }, { CreateAgents: 15, CreateInterval: 50 * time.Millisecond, - Duration: 3 * time.Second, + Duration: 10 * time.Second, }, { CreateAgents: 25, CreateInterval: 50 * time.Millisecond, - Duration: 3 * time.Second, + Duration: 10 * time.Second, }, { CreateAgents: 50, CreateInterval: 50 * time.Millisecond, - Duration: 3 * time.Second, + Duration: 10 * time.Second, }, }