1
0
Fork 0

test: skip MatchImagePkg test in CI

master
dump_stack() 2023-05-14 17:34:49 +00:00
parent a090328b1c
commit 19081aea5d
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC
1 changed files with 4 additions and 0 deletions

View File

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