Skip to content

Commit

Permalink
fixup! fixup! tests: Add basic e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
cfergeau committed Oct 10, 2023
1 parent deeea95 commit b816ebc
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions test/vm_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -257,10 +257,14 @@ func TestPCIIds(t *testing.T) {
})
}

for name, test := range pciidMacOS13Tests {
t.Run(name, func(t *testing.T) {
testPCIId(t, test, puipuiProvider)
})
if err := macOSAvailable(13); err != nil {
t.Log("Skipping macOS 13 tests")
} else {
for name, test := range pciidMacOS13Tests {
t.Run(name, func(t *testing.T) {
testPCIId(t, test, puipuiProvider)
})
}
}
}

Expand Down

0 comments on commit b816ebc

Please sign in to comment.