From 55125389ef3a7ec3470066680f536bc1c6311a1e Mon Sep 17 00:00:00 2001 From: Dmitrii Gridnev Date: Tue, 9 Jul 2024 21:14:02 +0200 Subject: [PATCH] feature: mark a testrun as automated when created This behavior will work by default for all created test runs. --- internal/client/clientv1.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/client/clientv1.go b/internal/client/clientv1.go index f125626..0ca7fb4 100644 --- a/internal/client/clientv1.go +++ b/internal/client/clientv1.go @@ -245,6 +245,8 @@ func (c *ClientV1) CreateRun(ctx context.Context, projectCode, title string, des Title: title, } + m.SetIsAutotest(true) + if description != "" { m.SetDescription(description) }