aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Tews <michael@tews.dev>2026-03-31 04:38:30 +0200
committerMichael Tews <michael@tews.dev>2026-03-31 04:38:30 +0200
commit1b06306a7e55e1011f3d6dbeb37481779da5416c (patch)
treeda7cee2057752aa65bc5b59ad6b577340c06b14b
parent7f67901e1355123f42e0252dab5a3490aece17fb (diff)
test: run tests with -parallel=16
-rw-r--r--magefile.go6
1 files 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