mirror of
https://github.com/crazy-max/diun.git
synced 2025-04-10 13:57:31 +00:00
Parallelize more slow running tests
This commit is contained in:
parent
92c1a6a874
commit
9826638a26
2 changed files with 4 additions and 0 deletions
pkg/registry
|
@ -308,6 +308,7 @@ func TestManifestVariant(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestManifestTaggedDigest(t *testing.T) {
|
||||
t.Parallel()
|
||||
rc, err := New(Options{
|
||||
CompareDigest: true,
|
||||
ImageOs: "linux",
|
||||
|
@ -340,6 +341,7 @@ func TestManifestTaggedDigest(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestManifestTaggedDigestUnknownTag(t *testing.T) {
|
||||
t.Parallel()
|
||||
rc, err := New(Options{
|
||||
CompareDigest: true,
|
||||
ImageOs: "linux",
|
||||
|
|
|
@ -28,6 +28,8 @@ func TestTags(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestTagsWithDigest(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
assert.NotNil(t, rc)
|
||||
|
||||
image, err := ParseImage(ParseImageOptions{
|
||||
|
|
Loading…
Add table
Reference in a new issue