From 5fb7f8089b4af4bc698604f7c69bb9bbcf6ba352 Mon Sep 17 00:00:00 2001 From: Antonio Navarro Date: Fri, 27 Sep 2024 14:23:12 +0200 Subject: [PATCH] chore: Run stdlib tests in parallel to make gnovm tests run faster Signed-off-by: Antonio Navarro --- gnovm/tests/package_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnovm/tests/package_test.go b/gnovm/tests/package_test.go index 8e497941c7f..f62ade2cdc8 100644 --- a/gnovm/tests/package_test.go +++ b/gnovm/tests/package_test.go @@ -51,6 +51,8 @@ func TestStdlibs(t *testing.T) { for _, pkgPath := range pkgPaths { testDir := testDirs[pkgPath] t.Run(pkgPath, func(t *testing.T) { + pkgPath := pkgPath + t.Parallel() runPackageTest(t, testDir, pkgPath) }) }