Skip to content

Commit

Permalink
Merge pull request crazy-max#1003 from IamTheFij/parallelize-slow-tests
Browse files Browse the repository at this point in the history
Parallelize more slow running tests
  • Loading branch information
crazy-max authored Oct 29, 2023
2 parents 92c1a6a + 9826638 commit 88dbeb5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/registry/manifest_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,7 @@ func TestManifestVariant(t *testing.T) {
}

func TestManifestTaggedDigest(t *testing.T) {
t.Parallel()
rc, err := New(Options{
CompareDigest: true,
ImageOs: "linux",
Expand Down Expand Up @@ -340,6 +341,7 @@ func TestManifestTaggedDigest(t *testing.T) {
}

func TestManifestTaggedDigestUnknownTag(t *testing.T) {
t.Parallel()
rc, err := New(Options{
CompareDigest: true,
ImageOs: "linux",
Expand Down
2 changes: 2 additions & 0 deletions pkg/registry/tags_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ func TestTags(t *testing.T) {
}

func TestTagsWithDigest(t *testing.T) {
t.Parallel()

assert.NotNil(t, rc)

image, err := ParseImage(ParseImageOptions{
Expand Down

0 comments on commit 88dbeb5

Please sign in to comment.