Skip to content

Commit

Permalink
Run tests in parallel.
Browse files Browse the repository at this point in the history
  • Loading branch information
kislaykishore committed Jun 19, 2024
1 parent f5a05a3 commit 668fa3f
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ func TestParallelDownloads(t *testing.T) {
}
for _, tc := range tbl {
t.Run(tc.name, func(t *testing.T) {
t.Parallel()
minObj, bucket, cache := CreateObjectInStoreAndInitCache(t, tc.objectSize)
jm := NewJobManager(cache, util.DefaultFilePerm, util.DefaultDirPerm, cacheDir, 2, &config.FileCacheConfig{EnableParallelDownloads: true,
DownloadParallelismPerFile: math.MaxInt, ReadRequestSizeMB: tc.readReqSize, EnableCrcCheck: true, MaxDownloadParallelism: tc.maxDownloadParallelism})
Expand Down

0 comments on commit 668fa3f

Please sign in to comment.