1
0

test: skip MatchImagePkg test in CI

This commit is contained in:
dump_stack() 2023-05-14 17:34:49 +00:00
parent a090328b1c
commit 19081aea5d
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC

View File

@ -9,6 +9,10 @@ import (
) )
func TestMatchImagePkg(t *testing.T) { func TestMatchImagePkg(t *testing.T) {
if os.Getenv("CI") != "" {
t.Skip("skip testing in CI")
}
t.Log("tested with cache by default") t.Log("tested with cache by default")
tmp, err := fs.TempDir() tmp, err := fs.TempDir()