From 1b06306a7e55e1011f3d6dbeb37481779da5416c Mon Sep 17 00:00:00 2001 From: Michael Tews Date: Tue, 31 Mar 2026 04:38:30 +0200 Subject: test: run tests with -parallel=16 --- magefile.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/magefile.go b/magefile.go index caca199..a7fcdc0 100644 --- a/magefile.go +++ b/magefile.go @@ -111,14 +111,14 @@ func TestAgainstContainer() error { err = runCommandWithEnv( []string{"RCLONE_CONFIG=" + config.ConfigPath}, - "go", "test", "-parallel=1", "-v", "-count=1", "./backend/studip/studip_test.go", + "go", "test", "-parallel=16", "-v", "-count=1", "./backend/studip/studip_test.go", ) if err != nil { return err } err = runCommandWithEnv( []string{"RCLONE_CONFIG=" + config.ConfigPath}, - "go", "-C", "fs/sync", "test", "-parallel=1", "-remote", "TestStudIP:fs/sync", "-v", "-count=1", + "go", "-C", "fs/sync", "test", "-parallel=16", "-remote", "TestStudIP:fs/sync", "-v", "-count=1", ) if err != nil { return err @@ -126,7 +126,7 @@ func TestAgainstContainer() error { err = runCommandWithEnv( []string{"RCLONE_CONFIG=" + config.ConfigPath}, - "go", "-C", "fs/sync", "test", "-parallel=1", "-remote", "TestStudIP:fs/operations", "-v", "-count=1", + "go", "-C", "fs/sync", "test", "-parallel=16", "-remote", "TestStudIP:fs/operations", "-v", "-count=1", ) if err != nil { return err -- cgit v1.0